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

◆ Plot()

Function Plot ( N As  Long,
X() As  Double,
Y() As  Double,
Z() As  Double,
Optional KwArgs As  String = "" 
)

3D plot

Purpose
3D plot as lines and/or markers.
Returns
Successful exit: Line2D object.
Error occurred: NULL.
PyObject (list of Line2D).
A list of lines representing the plotted data.
(On error, Nothing is returned)
Parameters
[in]NNumber of data. (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)
z-axis data.
[in]KwArgs(Optional)
Optional keyword parameters. (default = "")
Example
Basic 3D plot (spiral).