Values of a function on a grid (original) (raw)
Scilab 5.3.3
- Scilab help
- Graphics
- 3d_plot
- comet3d
- contour
- eval3d
- eval3dp
- fac3d
- fcontour
- fplot3d
- fplot3d1
- genfac3d
- geom3d
- hist3d
- mesh
- milk_drop
- nf3d
- param3d
- param3d1
- param3d_properties
- plot3d
- plot3d1
- plot3d2
- plot3d3
- secto3d
- surf
- surface_properties
Please note that the recommended version of Scilab is 2026.0.1. This page might be outdated.
However, this page did not exist in the previous stable version.
Scilab help >> Graphics > 3d_plot > eval3d
eval3d
values of a function on a grid
Calling Sequence
Arguments
fun
function accepting vectors as arguments.
x,y
2 vectors of size (1,n1) and (1,n2). (default value for y : y=x).
z
matrix of size (n1,n2).
Description
This function returns a matrix z(n1,n2). z(i,j)=fun(x(i),y(j)). If the function fun does not accept arguments of type vector use the primitive feval.
Examples
x=-5:5;y=x; deff('[z]=f(x,y)',['z= x.*y']); z=eval3d(f,x,y); plot3d(x,y,z);
deff('[z]=f(x,y)',['z= x*y']); z=feval(x,y,f); plot3d(x,y,z);
See Also
- feval — multiple evaluation