diff scripts/plot/util/copyobj.m @ 18924:9a5e03801d23

Update some plot %!demos so that they run under Matlab. * datetick.m: Explicitly name 'x' axis in call to datetick. * mesh.m: Use try/catch around block checking __graphics_toolkit__ which is an Octave-only figure property. * patch.m: Call patch with X,Y,C rather than X,Y,PROP,VAL which is not supported by Matlab. * ezplot3: Use explicit call to legend, rather than ';legend;' in ezplot3 call which is Octave-only syntax. * rose.m: Add a demo that Matlab can run. Matlab won't run the second demo which uses Octave-only syntax. * copyobj.m: Don't use errorbar plot style argument which is Octave-only syntax.
author Rik <rik@octave.org>
date Mon, 14 Jul 2014 21:40:28 -0700
parents ee125c82e01e
children
line wrap: on
line diff
--- a/scripts/plot/util/copyobj.m	Mon Jul 14 08:54:45 2014 -0700
+++ b/scripts/plot/util/copyobj.m	Mon Jul 14 21:40:28 2014 -0700
@@ -82,7 +82,7 @@
 %! y = x.^2;
 %! dy = 2 * (.2 * x);
 %! y2 = (x - 3).^2;
-%! hg = errorbar (x, y, dy,'#~');
+%! hg = errorbar (x, y, dy);
 %! set (hg, 'marker', '^', 'markerfacecolor', rand (1,3));
 %! plot (x, y2, 'ok-');
 %! legend ('errorbar', 'line');