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,
Optional Fmt As  String,
Optional KwArgs As  String 
)

XY plot

Purpose
XY plot as lines and/or markers.
Returns
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]Fmt(Optional)
Format string. (default = "")
[in]KwArgs(Optional)
Optional keyword parameters. (default = "")
Example
Plot basic line plot.