diff scripts/plot/polar.m @ 2315:bf8b1bffb58f

[project @ 1996-07-12 17:22:07 by jwe]
author jwe
date Fri, 12 Jul 1996 17:22:16 +0000
parents 949ab8eba8bc
children b5568c31ee2c
line wrap: on
line diff
--- a/scripts/plot/polar.m	Fri Jul 12 03:58:02 1996 +0000
+++ b/scripts/plot/polar.m	Fri Jul 12 17:22:16 1996 +0000
@@ -35,22 +35,22 @@
 
   if (nargin == 3)
     if (isstr (fmt))
-      fmt = plot_opt ("polar", fmt);
+      fmt = __pltopt__ ("polar", fmt);
     else
       error ("polar: third argument must be a string");
     endif
-    polar_int_2 (x1, x2, fmt);
+    __plr2__ (x1, x2, fmt);
   elseif (nargin == 2)
     if (isstr (x2))
-      fmt = plot_opt ("polar", x2);
-      polar_int_1 (x1, fmt);
+      fmt = __pltopt__ ("polar", x2);
+      __plr1__ (x1, fmt);
     else
       fmt = "";
-      polar_int_2 (x1, x2, fmt);
+      __plr2__ (x1, x2, fmt);
     endif
   elseif (nargin == 1)
     fmt = "";
-    polar_int_1 (x1, fmt);
+    __plr1__ (x1, fmt);
   else
     usage ("polar (theta, rho, fmt)");
   endif