| Group: | Plot Manipulation |
| See also: | createdisplay show |
| Function: | ||
| Description: |
print a display or a datapart of it.
|
| Usage: | print(di{, l_num, c_num} {, filename}) | |
| Input: | ||
| di | Display | |
| l_num | integer, 1 ... count of lines of di | |
| c_num | integer, 1 ... count of columns of di | |
| filename | string, a name of a ps-file | |
di=createdisplay(1, 1) x=1:100 y=sin(x/20)+uniform(100, 1)/10 show(di, 1, 1, x~y, x~knn(y, 10)) print(di, "TEST.ps")
A file named "TEST.ps" is created and with the content from the display di filled.
| Group: | Plot Manipulation |
| See also: | createdisplay show |