The values returned by points
, list of {x, y, z}
, are passed to f
in the same order. Simple example
SeedRandom[123];
point = points
(* {1.20766, 3.77441, 5.65929} *)
f@@point
(* 17.0366 *)
Is the same as
f[point[[1]], point[[2]], point[[3]]]
(* 17.0366 *)
To plot f[x, y, z]
vs x
, generate the table as
{f @@ points, First@points}
To plot against y
{f @@ points, points[[2]]}