|
|
◆ Tricontour()
| Function Tricontour |
( |
N As |
Long, |
|
|
X() As |
Double, |
|
|
Y() As |
Double, |
|
|
Z() As |
Double, |
|
|
Levels() As |
Double, |
|
|
Optional KwArgs As |
String |
|
) |
| |
Contour lines on unstructured triangular grid
- Purpose
- Draw contour lines on an unstructured triangular grid.
- Returns
- PyObject (TriContourSet).
(On error, Nothing is returned)
- Parameters
-
| [in] | N | Number of grid points. (N > 0) |
| [in] | X() | Array X(LX - 1) (LX >= N)
x-axis data. |
| [in] | Y() | Array Y(LY - 1) (LY >= N)
y-axis data. |
| [in] | Z() | Array Z(LZ - 1) (LZ >= N)
The height values over which the contour is drawn. |
| [in] | Levels() | Array Levels(LLevels - 1) (LLevels >= 0)
Determines the number and positions of the contour lines / regions.
If LLevels = 1, tries to automatically choose no more than n+1 "nice" contour levels between minimum and maximum numeric values of Z, where n = Int(Levels(0)) > 0.
If LLevels > 1, draw contour lines at the specified levels. The values must be in increasing order. |
| [in] | KwArgs | (Optional)
Optional keyword parameters. (default = "") |
- Example
- Contour lines on an unstructured triangular grid.
|