|
|
◆ Streamplot()
| Function Streamplot |
( |
Nx As |
Long, |
|
|
Ny As |
Long, |
|
|
X() As |
Double, |
|
|
Y() As |
Double, |
|
|
U() As |
Double, |
|
|
V() As |
Double, |
|
|
Optional KwArgs As |
String |
|
) |
| |
Streamlines
- Purpose
- Draw streamlines of a vector flow.
- Returns
- PyObject (LineCollection and PatchCollection).
(On error, Nothing is returned)
- Parameters
-
| [in] | Nx | Number of points in x direction. (Nx > 0) |
| [in] | Ny | Number of points in y direction. (Ny > 0) |
| [in] | X() | Array X(LX1 - 1, LX2 - 1) (LX1 >= Ny, LX2 >= Nx)
x-axis data. |
| [in] | Y() | Array Y(LY1 - 1, LY2 - 1) (LY1 >= Ny, LY2 >= Nx)
y-axis data. |
| [in] | U() | Array U(LU1 - 1, LU2- 1) (LU1 >= Ny, LU2 >= Nx)
The x-velocities. |
| [in] | V() | Array V(LV1 - 1, LV2- 1) (LV1 >= Ny, LV2 >= Nx)
The y-velocities. |
| [in] | KwArgs | (Optional)
Optional keyword parameters. (default = "") |
- Example
- Draw streamlines.
|