Group: | Plot Manipulation |
See also: | axeson axesoff |
Function: | setsize | |
Description: |
setsize sets the size (in pixels) for all the plots created later
|
Usage: | setsize(width, height) | |
Input: | ||
width | integer | |
height | integer |
setsize(250, 500) di=createdisplay(2, 1) x=1:100 y=sin(x/20)+uniform(100, 1)/10 show(di, 1, 1, x~y) show(di, 2, 1, x~y)
A new display is created with chosen size.
Group: | Plot Manipulation |
See also: | axeson axesoff |