comparison scripts/plot/pbaspect.m @ 16489:36dba9be680b

doc: Make documentation compatible with Texinfo 5.0 (bug #38392) * scripts/audio/wavread.m, scripts/miscellaneous/getappdata.m, scripts/miscellaneous/license.m, scripts/miscellaneous/ver.m, scripts/plot/daspect.m, scripts/plot/graphics_toolkit.m, scripts/plot/pbaspect.m, scripts/polynomial/polyval.m, scripts/polynomial/splinefit.m, scripts/set/union.m, scripts/signal/freqz.m: Moved @deftypefnx entries to always immediately follow @deftypefn.
author Amod Mulay <amodmulay1@gmail.com>
date Fri, 22 Mar 2013 17:07:00 -0400
parents 4506eade9f04
children b10a23fe80bb
comparison
equal deleted inserted replaced
16488:d4ce14c19c2c 16489:36dba9be680b
16 ## along with Octave; see the file COPYING. If not, see 16 ## along with Octave; see the file COPYING. If not, see
17 ## <http://www.gnu.org/licenses/>. 17 ## <http://www.gnu.org/licenses/>.
18 18
19 ## -*- texinfo -*- 19 ## -*- texinfo -*-
20 ## @deftypefn {Function File} {} pbaspect (@var{plot_box_aspect_ratio}) 20 ## @deftypefn {Function File} {} pbaspect (@var{plot_box_aspect_ratio})
21 ## @deftypefnx {Function File} {@var{plot_box_aspect_ratio} =} pbaspect ( )
22 ## @deftypefnx {Function File} {} pbaspect (@var{mode})
23 ## @deftypefnx {Function File} {@var{plot_box_aspect_ratio_mode} =} pbaspect ("mode")
24 ## @deftypefnx {Function File} {} pbaspect (@var{hax}, @dots{})
25 ##
21 ## Set the plot box aspect ratio of the current axes. The aspect ratio 26 ## Set the plot box aspect ratio of the current axes. The aspect ratio
22 ## is a normalized 3-element vector representing the rendered lengths of 27 ## is a normalized 3-element vector representing the rendered lengths of
23 ## the x, y, and z-axes. 28 ## the x, y, and z-axes.
24 ## 29 ##
25 ## @deftypefnx {Function File} {@var{plot_box_aspect_ratio} =} pbaspect ( ) 30 ## When called without any arguments, returns the plot box aspect ratio of
26 ## Return the plot box aspect ratio of the current axes. 31 ## the current axes.
27 ## 32 ##
28 ## @deftypefnx {Function File} {} pbaspect (@var{mode}) 33 ## @code{pbaspect(@var{mode})} sets the plot box aspect ratio mode of the current axes.
29 ## Set the plot box aspect ratio mode of the current axes. 34 ##
30 ## 35 ## @code{pbaspect ("mode")} returns the plot box aspect ratio mode of the current axes.
31 ## @deftypefnx {Function File} {@var{plot_box_aspect_ratio_mode} =} pbaspect ("mode") 36 ##
32 ## Return the plot box aspect ratio mode of the current axes. 37 ## @code{pbaspect (@var{hax}, @dots{})} uses the axes, with handle @var{hax}, instead
33 ## 38 ## of the current axes.
34 ## @deftypefnx {Function File} {} pbaspect (@var{hax}, @dots{})
35 ## Use the axes, with handle @var{hax}, instead of the current axes.
36 ## 39 ##
37 ## @seealso{axis, daspect, xlim, ylim, zlim} 40 ## @seealso{axis, daspect, xlim, ylim, zlim}
38 ## @end deftypefn 41 ## @end deftypefn
39 42
40 ## Author: Ben Abbott <bpabbott@mac.com> 43 ## Author: Ben Abbott <bpabbott@mac.com>