XLPack for Matplotlib Experimental Version 0.1
Reference Manual
Loading...
Searching...
No Matches

◆ 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).
Container object with attributes lines and arrows.
Parameters
[in]NxNumber of points in x direction. (Nx > 0)
[in]NyNumber 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.