diff scripts/plot/semilogy.m @ 4:b4df021f796c

[project @ 1993-08-08 01:26:08 by jwe] Initial revision
author jwe
date Sun, 08 Aug 1993 01:26:08 +0000
parents
children 16a24e76d6e0
line wrap: on
line diff
new file mode 100644
--- /dev/null
+++ b/scripts/plot/semilogy.m
@@ -0,0 +1,27 @@
+function semilogy (x1, x2)
+
+# usage: semilogy (x, y)
+#
+# Make a 2D plot of y versus x using a log scale for the y axis. 
+#
+# See the help message for the plot command for a description of how
+# the arguments are interpreted. 
+#
+# See also: plot, semilogx, loglog, polar, mesh, contour, bar, stairs,
+#           gplot, gsplot, replot, xlabel, ylabel, title 
+
+  set nologscale x;
+  set logscale y;
+  set nopolar;
+
+  if (nargin == 1)
+    plot_int (x1);
+  elseif (nargin == 2)
+    plot_int (x1, x2);
+  else
+    usage = sprintf ("usage: semilogy (x)\n");
+    usage = sprintf ("%s       semilogy (x, y)", usage);
+    error (usage);
+  endif
+
+endfunction