Scilab-Branch-5.3-GIT
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
eval3d
values of a function on a grid
Calling Sequence
[z]=eval3d(fun,x,[y])
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
See Also
- feval — multiple evaluation
Authors
Steer S.; ; ;
<< contour | 3d_plot | eval3dp >> |