diff scripts/plot/contour.m @ 2667:1d2a83e8a9a3

[project @ 1997-02-10 04:06:55 by jwe]
author jwe
date Mon, 10 Feb 1997 04:07:08 +0000
parents a034dcdbc282
children df8c732b4fb2
line wrap: on
line diff
--- a/scripts/plot/contour.m
+++ b/scripts/plot/contour.m
@@ -39,7 +39,7 @@
       command = sprintf ("gset cntrparam levels %d", n);
       eval (command);
       gset noparametric;
-      gset view 0, 0, 1.9, 1;
+      gset view 0, 0, 1, 1;
       gsplot z w l 1;
     else
       error ("mesh: argument must be a matrix");
@@ -64,10 +64,10 @@
         gset nosurface;
         gset contour;
         gset cntrparam bspline;
-        command = sprintf ("set cntrparam levels %d", n);
+        command = sprintf ("gset cntrparam levels %d", n);
         eval (command);
 	gset parametric;
-        gset view 0, 0, 1.9, 1;
+        gset view 0, 0, 1, 1;
 	gsplot zz w l 1;
       else
         msg = "mesh: rows (z) must be the same as length (x) and";