comparison scripts/plot/appearance/axis.m @ 28912:0de38a6ef693

maint: Use Octave convention of space after function name in scripts dir. * cplxpair.m, gradient.m, integral.m, integral3.m, interp2.m, interpft.m, num2str.m, pol2cart.m, quad2d.m, quadgk.m, quadl.m, repelem.m, sph2cart.m, convhull.m, delaunay.m, delaunayn.m, movegui.m, print_usage.m, __strip_html_tags__.m, colormap.m, gray2ind.m, imformats.m, importdata.m, javachk.m, condest.m, isbanded.m, krylov.m, lscov.m, rref.m, inputParser.m, publish.m, symvar.m, validateattributes.m, ode15i.m, ode15s.m, ode23.m, ode23s.m, ode45.m, fminbnd.m, fminsearch.m, glpk.m, qp.m, get_forge_pkg.m, installed_packages.m, annotation.m, axis.m, camorbit.m, campos.m, camva.m, camzoom.m, daspect.m, legend.m, pbaspect.m, __gnuplot_legend__.m, light.m, patch.m, plotyy.m, __pie__.m, reducepatch.m, ribbon.m, streamline.m, trisurf.m, figure.m, ndgrid.m, __gnuplot_draw_axes__.m, __opengl_print__.m, padecoef.m, polygcd.m, ppval.m, spline.m, union.m, bicg.m, bicgstab.m, cgs.m, eigs.m, gmres.m, pcg.m, pcr.m, __alltohandles__.m, __sprand__.m, qmr.m, tfqmr.m, betaincinv.m, cosint.m, gammainc.m, discrete_cdf.m, discrete_inv.m, discrete_rnd.m, base2dec.m, strtok.m, compare_plot_demos.m, html_compare_plot_demos.m, speed.m, test.m, weboptions.m, webread.m, webwrite.m: Use Octave convention of space after function name and before '(' in scripts directory.
author Rik <rik@octave.org>
date Tue, 13 Oct 2020 18:17:29 -0700
parents 2fb684dc2ec2
children 6e460773bdda
comparison
equal deleted inserted replaced
28911:c001ae7f6726 28912:0de38a6ef693
585 %! title ("axes at [3 6 0 1], then autoy"); 585 %! title ("axes at [3 6 0 1], then autoy");
586 %! axis ([3,6,0,1]); 586 %! axis ([3,6,0,1]);
587 %! axis ("autoy"); 587 %! axis ("autoy");
588 %! 588 %!
589 %! subplot (326); 589 %! subplot (326);
590 %! plot (t, sin(t), t, -2*sin(t/2)); 590 %! plot (t, sin (t), t, -2*sin (t/2));
591 %! axis ("tight"); 591 %! axis ("tight");
592 %! title ("tight"); 592 %! title ("tight");
593 593
594 %!demo 594 %!demo
595 %! clf; 595 %! clf;
596 %! x = 0:0.1:10; 596 %! x = 0:0.1:10;
597 %! plot (x, sin(x)); 597 %! plot (x, sin (x));
598 %! axis image; 598 %! axis image;
599 %! title ({"image", 'equivalent to "tight" & "equal"'}); 599 %! title ({"image", 'equivalent to "tight" & "equal"'});
600 600
601 %!demo 601 %!demo
602 %! clf; 602 %! clf;