diff scripts/plot/__plt2vv__.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/__plt2vv__.m
+++ b/scripts/plot/__plt2vv__.m
@@ -19,11 +19,11 @@
 
 ## Author: jwe
 
-function plot_2_v_v (x, y, fmt)
+function __plt2vv__ (x, y, fmt)
 
   if (nargin < 2 || nargin > 3)
-    msg = sprintf ("plot_2_v_v (x, y)\n");
-    msg = sprintf ("%s              plot_2_v_v (x, y, fmt)", msg);
+    msg = sprintf ("__plt2vv__ (x, y)\n");
+    msg = sprintf ("%s              __plt2vv__ (x, y, fmt)", msg);
     usage (msg);
   elseif (nargin == 2)
     fmt = "";
@@ -47,7 +47,7 @@
   endif
 
   if (x_nr != y_nr)
-    error ("plot_2_v_v: vector lengths must match");
+    error ("__plt2vv__: vector lengths must match");
   endif
 
   tmp = [x, y];