2D plot (logarithmic axes) (obsolete)
plot2d1(str,x,y,[style,strf,leg,rect,nax])
a can have the following values: | |
---|---|
e, o or g. :e means “empty”. Itspecifies the fact that the value of x is not
: |
:
:
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.
// multiple plot without giving x
x=[0:0.1:2*%pi]';
plot2d1("enn",1,[`sin`_(x) `sin`_(2*x) `sin`_(3*x)])
// multiple plot using only one x
`clf`_()
plot2d1("onn",x,[`sin`_(x) `sin`_(2*x) `sin`_(3*x)])
// logarithmic plot
x=[0.1:0.1:3]'; `clf`_()
plot2d1("oll",x,[`exp`_(x) `exp`_(x^2) `exp`_(x^3)])