Keywords - Function groups - @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

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

Example:
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)

Result:
Contents of displaytype

[1,]        2        0
[2,]        1        1



(C) MD*TECH Method and Data Technologies, 05.02.2006