|
Contents | Previous | Next | Subchapters |
| Syntax |
tpexport(file, format) |
| See Also | tpopen , tpput , tpplot |
TIFF, EPS, BMP, PNG,
or JPEG.
clear
tpopen
x = 0. : .1 : 2 * pi
y1 = sin(x)
y2 = 2 * sin(x)
y3 = 3 * sin(x)
tpplot(x,[y1, y2, y3], "SOLID", 0.5)
tpexport([OM_INSTALL,"\programs\sin1.png"], "PNG")
Tecplot will create a PNG format image file of the following
image in the programs directory of your O-Matrix installation.
tpopen
tpplot(x,y1, "SOLID", 0.5)
tpplot(x,y2, "SOLID", 0.5)
tpplot(x,y3, "SOLID", 0.5)
tpexport([OM_INSTALL,"\programs\sin2.bmp"], "BMP")
Tecplot will create a BMP format image file of the
following image in the programs directory of your O-Matrix installation.