diff scripts/plot/__plt2mm__.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 8b262e771614
line wrap: on
line diff
--- a/scripts/plot/__plt2mm__.m	Fri Jul 12 03:58:02 1996 +0000
+++ b/scripts/plot/__plt2mm__.m	Fri Jul 12 17:22:16 1996 +0000
@@ -19,11 +19,11 @@
 
 ## Author: jwe
 
-function plot_2_m_m (x, y, fmt)
+function __plt2mm__ (x, y, fmt)
 
   if (nargin < 2 || nargin > 3)
-    msg = sprintf ("plot_2_m_m (x, y)\n");
-    msg = sprintf ("%s              plot_2_m_m (x, y, fmt)", msg);
+    msg = sprintf ("__plt2mm__ (x, y)\n");
+    msg = sprintf ("%s              __plt2mm__ (x, y, fmt)", msg);
     usage (msg);
   elseif (nargin == 2)
     fmt = "";
@@ -41,10 +41,10 @@
       endfor
       eval (cmd);
     else
-      error ("plot_2_m_m: arguments must be a matrices");
+      error ("__plt2mm__: arguments must be a matrices");
     endif
   else
-    error ("plot_2_m_m: matrix dimensions must match");
+    error ("__plt2mm__: matrix dimensions must match");
   endif
 
 endfunction