diff scripts/plot/errorbar.m @ 11587:c792872f8942

all script files: untabify and strip trailing whitespace
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:35:29 -0500
parents d6619410e79c
children 22c50cbad2ce
line wrap: on
line diff
--- a/scripts/plot/errorbar.m
+++ b/scripts/plot/errorbar.m
@@ -148,24 +148,24 @@
 %! errorbar(0:10, rand_1x11_data3, rand_1x11_data4, ">");
 
 %!demo
-%! x = 0:0.5:2*pi; 
-%! err = x/100; 
-%! y1 = sin (x); 
-%! y2 = cos (x); 
+%! x = 0:0.5:2*pi;
+%! err = x/100;
+%! y1 = sin (x);
+%! y2 = cos (x);
 %! hg = errorbar (x, y1, err, "~", x, y2, err, ">");
 
 %!demo
-%! x = 0:0.5:2*pi; 
-%! err = x/100; 
-%! y1 = sin (x); 
-%! y2 = cos (x); 
+%! x = 0:0.5:2*pi;
+%! err = x/100;
+%! y1 = sin (x);
+%! y2 = cos (x);
 %! hg = errorbar (x, y1, err, err, "#r", x, y2, err, err, "#~");
 
 %!demo
-%! x = 0:0.5:2*pi; 
-%! err = x/100; 
-%! y1 = sin (x); 
-%! y2 = cos (x); 
+%! x = 0:0.5:2*pi;
+%! err = x/100;
+%! y1 = sin (x);
+%! y2 = cos (x);
 %! hg = errorbar (x, y1, err, err, err, err, "~>", ...
 %!                x, y2, err, err, err, err, "#~>-*");