2D plot of a curve defined by a function
fplot2d(xr, f) fplot2d(xr, f, style) fplot2d(xr, f, style, strf) fplot2d(xr, f, style, strf, leg) fplot2d(xr, f, style, strf, leg, rect) fplot2d(xr, f, style, strf, leg, rect, nax) fplot2d(xr, f, <opt_args>)
vector.
external of type y=f(x)
i.e. a scilab function or
a dynamically linked routine referred to as a string.
see plot2d
see plot2d
fplot2d
plots a curve defined by the external function
f
. The curve is approximated by a piecewise linear
interpolation using the points (xr(i),f(xr(i))
. The values of
f(x) are obtained by feval(xr,f)
.
Enter the command fplot2d()
to see a demo.
Version | Description |
6.1.1 | fplot2d() declared obsolete.
It will removed in the next Scilab version.
plot(x,f) replaces it. |