|
From: <and...@us...> - 2014-07-01 11:41:14
|
Revision: 13132
http://sourceforge.net/p/plplot/code/13132
Author: andrewross
Date: 2014-07-01 11:41:11 +0000 (Tue, 01 Jul 2014)
Log Message:
-----------
Tidy up continuation lines to remove deprecated backslashes.
Modified Paths:
--------------
trunk/examples/octave/x01c.m
trunk/examples/octave/x04c.m
trunk/examples/octave/x07c.m
trunk/examples/octave/x08c.m
trunk/examples/octave/x26c.m
trunk/examples/octave/x29c.m
Modified: trunk/examples/octave/x01c.m
===================================================================
--- trunk/examples/octave/x01c.m 2014-06-20 23:13:53 UTC (rev 13131)
+++ trunk/examples/octave/x01c.m 2014-07-01 11:41:11 UTC (rev 13132)
@@ -85,7 +85,7 @@
printf("\n\nYou are in Locate mode. Click any mouse button or press any key\n\
and the current cursor position will be printed.\n\
Please keep <NumLock> and <CapsLock> off.\n\
-Terminate locate mode with the <Enter> key.\n\
+Terminate locate mode with the <Enter> key.\n\
Finish the plot with the <Enter> or <ESC> key or the 3d mouse button\n");
fflush(stdout);
Modified: trunk/examples/octave/x04c.m
===================================================================
--- trunk/examples/octave/x04c.m 2014-06-20 23:13:53 UTC (rev 13131)
+++ trunk/examples/octave/x04c.m 2014-07-01 11:41:11 UTC (rev 13132)
@@ -155,7 +155,7 @@
plscol0a( 15, 32, 32, 32, 0.70 );
- [legend_width, legend_height] = \
+ [legend_width, legend_height] = ...
pllegend( bitor(PL_LEGEND_BACKGROUND, PL_LEGEND_BOUNDING_BOX), 0, 0.0, 0.0,
0.1, 15, 1, 1, 0, 0, opt_array, 1.0, 1.0, 2.0,
1., text_colors, text,
Modified: trunk/examples/octave/x07c.m
===================================================================
--- trunk/examples/octave/x07c.m 2014-06-20 23:13:53 UTC (rev 13131)
+++ trunk/examples/octave/x07c.m 2014-07-01 11:41:11 UTC (rev 13132)
@@ -24,7 +24,7 @@
## Initialize plplot */
plinit();
- base=[0, 100, 0, 100, 200, 500, 600, 700, 800, 900, \
+ base=[0, 100, 0, 100, 200, 500, 600, 700, 800, 900,
2000, 2100, 2200, 2300, 2400, 2500, 2600, 2700, 2800, 2900];
plfontld(0);
Modified: trunk/examples/octave/x08c.m
===================================================================
--- trunk/examples/octave/x08c.m 2014-06-20 23:13:53 UTC (rev 13131)
+++ trunk/examples/octave/x08c.m 2014-07-01 11:41:11 UTC (rev 13132)
@@ -101,11 +101,9 @@
plmtex("t", 1.0, 0.5, 0.5, title(k,:));
plcol0(1);
if (rosen)
- plw3d(1.0, 1.0, 1.0, -1.5, 1.5, -0.5, 1.5, zmin, zmax, \
- alt(k), az(k));
+ plw3d(1.0, 1.0, 1.0, -1.5, 1.5, -0.5, 1.5, zmin, zmax, alt(k), az(k));
else
- plw3d(1.0, 1.0, 1.0, -1.0, 1.0, -1.0, 1.0, zmin, zmax, \
- alt(k), az(k));
+ plw3d(1.0, 1.0, 1.0, -1.0, 1.0, -1.0, 1.0, zmin, zmax, alt(k), az(k));
endif
plbox3("bnstu", "x axis", 0.0, 0,
Modified: trunk/examples/octave/x26c.m
===================================================================
--- trunk/examples/octave/x26c.m 2014-06-20 23:13:53 UTC (rev 13131)
+++ trunk/examples/octave/x26c.m 2014-07-01 11:41:11 UTC (rev 13132)
@@ -240,7 +240,7 @@
plscol0a( 15, 32, 32, 32, 0.70 );
- [legend_width, legend_height] = \
+ [legend_width, legend_height] = ...
pllegend( bitor(PL_LEGEND_BACKGROUND, PL_LEGEND_BOUNDING_BOX), 0, 0.0, 0.0,
0.1, 15, 1, 1, 0, 0, opt_array, 1.0, 1.0, 2.0,
1., text_colors, text,
Modified: trunk/examples/octave/x29c.m
===================================================================
--- trunk/examples/octave/x29c.m 2014-06-20 23:13:53 UTC (rev 13131)
+++ trunk/examples/octave/x29c.m 2014-07-01 11:41:11 UTC (rev 13132)
@@ -120,8 +120,8 @@
i = 0:npts-1;
x = i*60.0*60.0*24.0;
p = asin(0.39795*cos(0.2163108 + 2*atan(0.9671396*tan(0.00860*(i-186)))));
- d = 24.0 - (24.0/pi)*acos( (sin(0.8333*pi/180.0) + \
- sin(lat*pi/180.0)*sin(p)) \
+ d = 24.0 - (24.0/pi)*acos( (sin(0.8333*pi/180.0) + ...
+ sin(lat*pi/180.0)*sin(p)) ...
./(cos(lat*pi/180.0)*cos(p)) );
y = d;
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|