Group: | Plot Manipulation |
See also: | setxaxis show setheadline |
Function: | setyaxis | |
Description: |
setyaxis changes the layout of the vertical axis.
|
Usage: | setyaxis(di, l_num, c_num, from, to{, origin, major, minor, m, k}) | |
Input: | ||
di | Display | |
l_num | integer, 1 ... count of lines of di | |
c_num | integer, 1 ... count of columns of di | |
from | the minimal value on the axis | |
to | the maximal value on the axis | |
origin | origin for tickmark | |
major | major for tickmark | |
minor | minor for tickmark | |
m | m from the "m+k*y" as axis text | |
k | k from the "m+k*y" as axis text |
di=createdisplay(1, 1) x=1:100 y=sin(x/20)+uniform(100, 1)/10 show(di, 1, 1, x~y) setyaxis(di, 1, 1, -1.5, 1.5, 0, 0.5, 0.1, 0, 1)
New Display windows is created, with user defined properties of y axis
Group: | Plot Manipulation |
See also: | setxaxis show setheadline |