changeset 14364:721a4a83cba6

test: Space out %!shared variable declaration for readability * pchip.m, ppval.m: Space out %!shared variable declaration for readability
author Rik <octave@nomad.inbox5.com>
date Tue, 14 Feb 2012 10:01:18 -0800
parents f3d52523cde1
children a598273c9c3d
files scripts/polynomial/pchip.m scripts/polynomial/ppval.m
diffstat 2 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/polynomial/pchip.m	Mon Feb 13 07:29:44 2012 -0800
+++ b/scripts/polynomial/pchip.m	Tue Feb 14 10:01:18 2012 -0800
@@ -138,7 +138,7 @@
 %! %-------------------------------------------------------------------
 %! % confirm that pchip agreed better to discontinuous data than spline
 
-%!shared x,y,y2,pp,yi1,yi2,yi3
+%!shared x, y, y2, pp, yi1, yi2, yi3
 %! x = 0:8;
 %! y = [1, 1, 1, 1, 0.5, 0, 0, 0, 0];
 %!assert (pchip (x,y,x), y)
--- a/scripts/polynomial/ppval.m	Mon Feb 13 07:29:44 2012 -0800
+++ b/scripts/polynomial/ppval.m	Tue Feb 14 10:01:18 2012 -0800
@@ -103,7 +103,7 @@
 endfunction
 
 
-%!shared b,c,pp,pp2,xi,abserr
+%!shared b, c, pp, pp2, xi, abserr
 %! b = 1:3;
 %! c = ones (2);
 %! pp = mkpp (b, c);