Provides a three-dimensional surface plot data set.
Defines the data set.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(surface_plot_data), | intent(inout) | :: | this |
The suface_plot_data object. |
||
real(kind=real64), | intent(in), | dimension(:,:) | :: | x |
An M-by-N matrix containing the x-coordinate data. |
|
real(kind=real64), | intent(in), | dimension(:,:) | :: | y |
An M-by-N matrix containing the y-coordinate data. |
|
real(kind=real64), | intent(in), | dimension(:,:) | :: | z |
An M-by-N matrix containing the z-coordinate data. |
|
class(errors), | intent(inout), | optional, | target | :: | err |
An error handling object. |
Gets the GNUPLOT command string to represent this surface_plot_data object.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(surface_plot_data), | intent(in) | :: | this |
The suface_plot_data object. |
The command string.
Gets the GNUPLOT command string containing the actual data to plot.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(surface_plot_data), | intent(in) | :: | this |
The suface_plot_data object. |
The GNUPLOT command string.
Gets the name to associate with this data set.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data), | intent(in) | :: | this |
The plot_data object. |
The name.
Gets the size of the stored data set.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(surface_plot_data), | intent(in) | :: | this |
The suface_plot_data object. |
||
integer(kind=int32), | intent(in) | :: | dim |
The dimension of interest. Notice, data is stored as a 2D matrix (i.e. only 1 and 2 are valid inputs). |
The size of the requested dimension.
Gets a value determining if a wireframe mesh should be displayed.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(surface_plot_data), | intent(in) | :: | this |
The suface_plot_data object. |
Returns true if a wireframe mesh should be displayed; else, false to display a solid surface.
Gets the requested X data point.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(surface_plot_data), | intent(in) | :: | this |
The suface_plot_data object. |
||
integer(kind=int32), | intent(in) | :: | i |
The row index. |
||
integer(kind=int32), | intent(in) | :: | j |
The column index. |
The value.
Gets the requested Y data point.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(surface_plot_data), | intent(in) | :: | this |
The suface_plot_data object. |
||
integer(kind=int32), | intent(in) | :: | i |
The row index. |
||
integer(kind=int32), | intent(in) | :: | j |
The column index. |
The value.
Gets the requested Z data point.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(surface_plot_data), | intent(in) | :: | this |
The suface_plot_data object. |
||
integer(kind=int32), | intent(in) | :: | i |
The row index. |
||
integer(kind=int32), | intent(in) | :: | j |
The column index. |
The value.
Sets the name to associate with this data set.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data), | intent(inout) | :: | this |
The plot_data object. |
||
character(len=*), | intent(in) | :: | txt |
The name. |
Sets a value determining if a wireframe mesh should be displayed.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(surface_plot_data), | intent(inout) | :: | this |
The suface_plot_data object. |
||
logical, | intent(in) | :: | x |
Set to true if a wireframe mesh should be displayed; else, false to display a solid surface. |
Sets the requested X data point.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(surface_plot_data), | intent(inout) | :: | this |
The suface_plot_data object. |
||
integer(kind=int32), | intent(in) | :: | i |
The row index. |
||
integer(kind=int32), | intent(in) | :: | j |
The column index. |
||
real(kind=real64), | intent(in) | :: | x |
The value. |
Sets the requested Y data point.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(surface_plot_data), | intent(inout) | :: | this |
The suface_plot_data object. |
||
integer(kind=int32), | intent(in) | :: | i |
The row index. |
||
integer(kind=int32), | intent(in) | :: | j |
The column index. |
||
real(kind=real64), | intent(in) | :: | x |
The value. |
Sets the requested Z data point.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(surface_plot_data), | intent(inout) | :: | this |
The suface_plot_data object. |
||
integer(kind=int32), | intent(in) | :: | i |
The row index. |
||
integer(kind=int32), | intent(in) | :: | j |
The column index. |
||
real(kind=real64), | intent(in) | :: | x |
The value. |