comparison scripts/plot/semilogy.m @ 2311:2b5788792cad

[project @ 1996-07-11 20:18:38 by jwe]
author jwe
date Thu, 11 Jul 1996 20:18:38 +0000
parents 5cffc4b8de57
children 5ca126254d15
comparison
equal deleted inserted replaced
2310:e2a8f216373d 2311:2b5788792cad
15 ### You should have received a copy of the GNU General Public License 15 ### You should have received a copy of the GNU General Public License
16 ### along with Octave; see the file COPYING. If not, write to the Free 16 ### along with Octave; see the file COPYING. If not, write to the Free
17 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA 17 ### Software Foundation, 59 Temple Place - Suite 330, Boston, MA
18 ### 02111-1307, USA. 18 ### 02111-1307, USA.
19 19
20 ## usage: semilogy (x, y)
21 ## semilogy (x1, y1, x2, y2, ...)
22 ## semilogy (x, y, fmt)
23 ##
24 ## Make a 2D plot of y versus x using a log scale for the x axis.
25 ##
26 ## See the help message for the plot command for a description of how
27 ## the arguments are interpreted.
28 ##
29 ## See also: plot, semilogx, loglog, polar, mesh, contour, bar, stairs,
30 ## gplot, gsplot, replot, xlabel, ylabel, title
31
20 function semilogy (...) 32 function semilogy (...)
21
22 ## usage: semilogy (x, y)
23 ## semilogy (x1, y1, x2, y2, ...)
24 ## semilogy (x, y, fmt)
25 ##
26 ## Make a 2D plot of y versus x using a log scale for the x axis.
27 ##
28 ## See the help message for the plot command for a description of how
29 ## the arguments are interpreted.
30 ##
31 ## See also: plot, semilogx, loglog, polar, mesh, contour, bar, stairs,
32 ## gplot, gsplot, replot, xlabel, ylabel, title
33 33
34 set nologscale x; 34 set nologscale x;
35 set logscale y; 35 set logscale y;
36 set nopolar; 36 set nopolar;
37 37