Mercurial > hg > octave-nkf
comparison scripts/plot/axis.m @ 3668:b0a68efa1295
[project @ 2000-05-13 06:40:56 by jwe]
author | jwe |
---|---|
date | Sat, 13 May 2000 06:40:56 +0000 |
parents | f7f94396dd81 |
children | e0b7a493e5a8 |
comparison
equal
deleted
inserted
replaced
3667:f7f94396dd81 | 3668:b0a68efa1295 |
---|---|
31 ## automatically by setting the built-in variable @code{automatic_replot} | 31 ## automatically by setting the built-in variable @code{automatic_replot} |
32 ## to a nonzero value. | 32 ## to a nonzero value. |
33 ## | 33 ## |
34 ## Without any arguments, @code{axis} turns autoscaling on. | 34 ## Without any arguments, @code{axis} turns autoscaling on. |
35 ## | 35 ## |
36 ## A second argument may be used to specify various formats. For | 36 ## The vector argument specifying limits is optional, and additional |
37 ## string arguments may be used to specify various axis properties. For | |
37 ## example, | 38 ## example, |
38 ## | 39 ## |
39 ## @example | 40 ## @example |
40 ## axis ([1, 2, 3, 4], "square"); | 41 ## axis ([1, 2, 3, 4], "square"); |
41 ## @end example | 42 ## @end example |
42 ## | 43 ## |
43 ## @noindent | 44 ## @noindent |
44 ## forces a square aspect ratio. | 45 ## forces a square aspect ratio, and |
46 ## | |
47 ## @example | |
48 ## axis ("labely", "tic"); | |
49 ## @end example | |
50 ## | |
51 ## @noindent | |
52 ## turns tic marks on for all axes and tic mark labels on for the y-axis | |
53 ## only. | |
45 ## | 54 ## |
46 ## @noindent | 55 ## @noindent |
47 ## The following options control the aspect ratio of the axes. | 56 ## The following options control the aspect ratio of the axes. |
48 ## | 57 ## |
49 ## @table @code | 58 ## @table @code |
79 ## @item "on" | 88 ## @item "on" |
80 ## Turn tic marks and labels on for all axes. | 89 ## Turn tic marks and labels on for all axes. |
81 ## @item "off" | 90 ## @item "off" |
82 ## Turn tic marks off for all axes. | 91 ## Turn tic marks off for all axes. |
83 ## @item "tic[xyz]" | 92 ## @item "tic[xyz]" |
84 ## Turn tic marks on for all axes, or turns them on for the | 93 ## Turn tic marks on for all axes, or turn them on for the |
85 ## specified axes and turns them off the remainder. | 94 ## specified axes and off for the remainder. |
86 ## @item "label[xyz]" | 95 ## @item "label[xyz]" |
87 ## Turn tic labels on for all axes, or turns them on for the | 96 ## Turn tic labels on for all axes, or turn them on for the |
88 ## specified axes and turns them off for the remainder. | 97 ## specified axes and off for the remainder. |
89 ## @item "nolabel" | 98 ## @item "nolabel" |
90 ## Turn tic labels off for all axes. | 99 ## Turn tic labels off for all axes. |
91 ## @end table | 100 ## @end table |
92 ## Note, if there are no tic marks for an axis, there can be no labels. | 101 ## Note, if there are no tic marks for an axis, there can be no labels. |
93 ## | 102 ## |