| Group: | Plot Manipulation |
| See also: | createdisplay |
| Function: | displaytype | |
| Description: | Returns the number of graphical objects in a display. |
| Usage: | m=displaytype(display) | |
| Input: | ||
| display | string, name of the display | |
| Output: | ||
| m | matrix, the element (i,j) represents the number of graphical objects at position (i,j) of the 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, x~z) show(dd, 2, 1, y~z) show(dd, 2, 2, y~x) displaytype(dd)
Contents of displaytype [1,] 2 0 [2,] 1 1