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

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)
show(dd, 1, 2, x~z)
show(dd, 2, 1, y~z)
show(dd, 2, 2, y~x)

Result:
you have a display with four parts with nice lines in each part.



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