- Scilab Online Help
- Graphics Library
- 2d_plot
- LineSpec
- Matplot
- Matplot1
- Matplot_properties
- Sfgrayplot
- Sgrayplot
- champ
- champ1
- champ_properties
- contour2d
- contour2di
- contourf
- errbar
- fchamp
- fcontour2d
- fec
- fec_properties
- fgrayplot
- fplot2d
- grayplot
- grayplot_properties
- graypolarplot
- histplot
- oldplot
- paramfplot2d
- plot
- plot2d
- plot2d1
- plot2d2
- plot2d3
- plot2d4
- plot2d_old_version
- polarplot
Please note that the recommended version of Scilab is 2025.0.0. This page might be outdated.
See the recommended documentation of this function
paramfplot2d
animated 2D plot, curve defined by a function
Calling Sequence
paramfplot2d(f,x,theta) paramfplot2d(f,x,theta,flag) paramfplot2d(f,x,theta,flagrect)
Arguments
- x
real vector.
- f
function
y=f(x,t)
. f is a Scilab function or a dynamically linked routine (referred to as a string).- theta
real vector (set of parameters).
- flag
string
'no'
or'yes'
: If "yes" screen is cleared between two consecutive plots.- rect
"rectangle" [xmin, xmax, ymin, ymax] (1 x 4 real vector),
Description
Animated plot of the function x-->f(x,t) for t=theta(1),theta(2),etc.
f can be a either Scilab function or a dynamically linked routine since
y=f(x,t) is evaluated as y=feval(x(:),t,f). See feval.
f: mapping x,t -> f(x,t) = R^N
valued function for x= vector of R^N
and t=real number. x is a N-vector of x-values and for each t in theta, f(x,t)=N-vector of y-values.
Examples
<< oldplot | 2d_plot | plot >> |