|
|
◆ Plot()
| Function Plot |
( |
N As |
Long, |
|
|
X() As |
Double, |
|
|
Y() As |
Double, |
|
|
Optional Fmt As |
String, |
|
|
Optional KwArgs As |
String |
|
) |
| |
XY plot
- Purpose
- Plot y versus x 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] | N | Number 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. |
| [in] | KwArgs | (Optional)
Optional keyword parameters. (default = "") |
- Example
- Plot basic line plot.
|