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

◆ Plot_surface()

Function Plot_surface ( Nx as long  ,
Ny as long  ,
X() As  Double,
Y() As  Double,
Z() As  Double,
Optional Cmap As  String,
Optional KwArgs As  String 
)

Surface plot

Purpose
Create a surface plot.
Returns
PyObject (Poly3DCollection).
(On error, Nothing is returned)
Parameters
[in]NxNumber of x-axis data.
[in]NyNumber of y-axis data.
[in]X()Array X(LX1 - 1, LX2 - 1) (LX1 >= Nx, LX2 >= Ny)
x-axis data.
[in]Y()Array Y(LY1 - 1, LY2 - 1) (LY1 >= Nx, LY2 >= Ny)
y-axis data.
[in]Z()Array Z(LZ1 - 1, LZ2 - 1) (LZ1 >= Nx, LZ2 >= Ny)
z-axis data.
[in]Cmap(Optional)
Colormap name.
[in]KwArgs(Optional)
Optional keyword parameters. (default = "")
Example
Surface plot.