comparison scripts/plot/appearance/pbaspect.m @ 31932:2e135e3cb1aa stable

maint: replace double semicolon ';;' line ending with just ';'. * qfiledialog.cpp, qpagesetupdialog_win.cpp, Filter.cpp, QWinTerminalImpl.cpp, gl-render.cc, ls-hdf5.cc, ls-mat4.cc, oct-map.cc, regexp.cc, stack-frame.h, __init_fltk__.cc, octave.cc, lo-specfun.cc, oct-rand.cc, installed_packages.m, pbaspect.m, index.tst, parser.tst: Replace double semicolon ';;' line ending with just ';'.
author Rik <rik@octave.org>
date Sat, 25 Mar 2023 14:06:56 -0700
parents 597f3ee61a48
children 939e5d952675
comparison
equal deleted inserted replaced
31929:969e5173f772 31932:2e135e3cb1aa
109 %! pbaspect ([1 1 1]); 109 %! pbaspect ([1 1 1]);
110 %! title ("plot box is square"); 110 %! title ("plot box is square");
111 111
112 %!demo 112 %!demo
113 %! clf; 113 %! clf;
114 %! x = 0:0.01:4;; 114 %! x = 0:0.01:4;
115 %! plot (x,cos (x), x,sin (x)); 115 %! plot (x,cos (x), x,sin (x));
116 %! pbaspect ([2 1 1]); 116 %! pbaspect ([2 1 1]);
117 %! title ("plot box aspect ratio is 2x1"); 117 %! title ("plot box aspect ratio is 2x1");
118 118
119 %!demo 119 %!demo