Scilab 5.3.3
- Scilab help
- Graphics
- 2d_plot
- LineSpec
- Matplot
- Matplot1
- Matplot_properties
- Sfgrayplot
- Sgrayplot
- champ
- champ1
- champ_properties
- comet
- 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.
However, this page did not exist in the previous stable version.
oldplot
simple plot (old version)
Calling Sequence
oldplot(x,y,[xcap,ycap,caption]) oldplot(y)
Arguments
- x,y
two vectors with same sizes
- xcap,ycap,caption
character strings or string matrices
Description
Plot y
as function of x
. xcap
and ycap
are captions for x-axis and y-axis respectively and
caption
is the caption of the plot.
Invoked with only one argument, oldplot(y)
plots the
y
vector or, if y
is a matrix, it plots all its
row vectors on the same plot. This plot is done with respect to the vector
1:<number of columns of y
>.
oldplot
is obsolete. Use plot2d
or
plot
instead.
Examples
Authors
J.Ph.C.
<< histplot | 2d_plot | paramfplot2d >> |