| Group: | Plot Manipulation |
| See also: | show |
| Function: | createdisplay | |
| Description: |
createdisplay create a display for further plotting the datasets or texts.
|
| Usage: | di=createdisplay(li_count, col_count) | |
| Input: | ||
| li_count | integer, requested count of lines of di | |
| col_count | integer, requested count of columns of di | |
| Output: | ||
| di | Display | |
dd=createdisplay(2,2) t=(1:60)/10 x=sin(t) y=sin(2*t) z=sin(3*t) show(dd, 1, 1, x~y) show(dd, 1, 2, x~z) show(dd, 2, 1, y~z) show(dd, 2, 2, y~x)
you have a display with four parts with nice lines in each part.
| Group: | Plot Manipulation |
| See also: | show |