- Scilab help
- Graphics
- 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
- comet
Please note that the recommended version of Scilab is 2026.0.0. This page might be outdated.
However, this page did not exist in the previous stable version.
plot2d1
2次元プロット (対数軸) (古い関数)
Calling Sequence
plot2d1(str,x,y,[style,strf,leg,rect,nax])
Parameters
- str
- is a string of length three - "abc".- a
- can have the following values: - e,- oor- g.- e
- means "empty". Itspecifies the fact that the value of - xis not used (the- xvalues are supposed to be regularly spaced, ie 1:<number of rows of- y>). The user must anyway give a value for- x, 1 for instance:- plot2d1("enn",1,y).
- o
- means "one". If there are many curves, they all have the same x-values: - xis a column vector of size nl and- yis a matrix of size (nl,nc). For example :- x=[0:0.1:2*%pi]';plot2d1("onn",x,[sin(x) cos(x)]).
- g
- means "general". - xand- ymust have the same size (nl,nc). Each column of- yis plotted with respect to the corresponding column of- x.- nccurves are plotted using- nlpoints.
 
- b, c
- can have the values - n(normal) or- l(logarithmic).- b=l
- a logarithmic axis is used on the x-axis 
- c=l
- a logarithmic axis is used on the y-axis 
 
 
- x,y,[style,strf,leg,rect,nax]
- these arguments have the same meaning as in the - plot2dfunction.
- opt_args
- these arguments have the same meaning as in the - plot2dfunction.
Description
This function is obsolete. USE plot2d INSTEAD !!
plot2d1 plots a set of 2D curves. It is the same as
    plot2d but with one more argument str which
    enables logarithmic axis. Moreover, it allows to specify only one column
    vector for x when it is the same for all the curves.
By default, successive plots are superposed. To clear the previous
    plot, use clf.
Enter the command plot2d1() to see a demo.
Examples
Authors
J.Ph.C.
| << plot2d | 2d_plot | plot2d2 >> |