Defines a two-dimensional plot data set.
Defines the data set to plot.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_2d), | intent(inout) | :: | this |
The plot_data_2d object. |
||
real(kind=real64), | intent(in), | dimension(:) | :: | x |
An N-element array containing the x coordinate data. |
|
real(kind=real64), | intent(in), | dimension(:) | :: | y |
An N-element array containing the y coordinate data. |
|
real(kind=real64), | intent(in), | optional, | dimension(:) | :: | c |
An N-element array defining how color should vary with the current colormap for each value. |
real(kind=real64), | intent(in), | optional, | dimension(:) | :: | ps |
An N-element array defining the size of each data point. |
class(errors), | intent(inout), | optional, | target | :: | err |
An error-handling object. |
Defines the data set to plot.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_2d), | intent(inout) | :: | this |
The plot_data_2d object. |
||
real(kind=real64), | intent(in), | dimension(:) | :: | y |
An N-element array containing the y-coordinate data. This data will be plotted against its own index. |
|
class(errors), | intent(inout), | optional, | target | :: | err |
An error-handling object. |
Gets the GNUPLOT command string defining which axes the data is to be plotted against.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_2d), | intent(in) | :: | this |
The plot_data_2d object. |
The command string.
Gets the stored color scaling data array.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_2d), | intent(in) | :: | this |
The plot_data_2d object. |
A copy of the stored data array.
Gets the color index.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_colored), | intent(in) | :: | this |
The plot_data_colored object. |
The index value.
Gets the GNUPLOT command string to represent this scatter_plot_data object.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(in) | :: | this |
The scatter_plot_data object. |
The command string.
Gets the number of data points.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_2d), | intent(in) | :: | this |
The plot_data_2d object. |
The number of data points.
Gets the GNUPLOT command string containing the actual data to plot.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_2d), | intent(in) | :: | this |
The plot_data_2d object. |
The command string.
Gets a value determining if the data should be plotted against the secondary y-axis.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_2d), | intent(in) | :: | this |
The plot_data_2d object. |
Returns true if the data should be plotted against the secondary y-axis; else, false to plot against the primary y-axis.
Gets a value determining if a line should be drawn.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(in) | :: | this |
The scatter_plot_data object. |
Returns true if the line should be drawn; else, false.
Gets a value determining if data point markers should be drawn.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(in) | :: | this |
The scatter_plot_data object. |
Returns true if the markers should be drawn; else, false.
Gets a logical value determining if a filled curve should be drawn.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(in) | :: | this |
The scatter_plot_data object. |
True if the curve should be filled; else, false.
Gets the object color.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_colored), | intent(in) | :: | this |
The plot_data_colored object. |
The color.
Gets the line style.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(in) | :: | this |
The scatter_plot_data object. |
The line style. The line style must be one of the following.
LINE_DASHED
LINE_DASH_DOTTED
LINE_DASH_DOT_DOT
LINE_DOTTED
LINE_SOLID
Gets the width of the line, in pixels.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(in) | :: | this |
The scatter_plot_data object. |
The line width.
Gets the marker frequency.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(in) | :: | this |
The scatter_plot_data object. |
The marker frequency.
Gets the marker scaling.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(in) | :: | this |
The scatter_plot_data object. |
The scaling factor.
Gets the marker style.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(in) | :: | this |
The scatter_plot_data object. |
The marker type. The marker type must be one of the following:
MARKER_ASTERISK
MARKER_EMPTY_CIRCLE
MARKER_EMPTY_NABLA
MARKER_EMPTY_RHOMBUS
MARKER_EMPTY_SQUARE
MARKER_EMPTY_TRIANGLE
MARKER_FILLED_CIRCLE
MARKER_FILLED_NABLA
MARKER_FILLED_RHOMBUS
MARKER_FILLED_SQUARE
MARKER_FILLED_TRIANGLE
MARKER_PLUS
MARKER_X
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 stored point size data array.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_2d), | intent(in) | :: | this |
The plot_data_2d object. |
A copy of the stored data array.
Gets a factor used to establish the simplification tolerance.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(in) | :: | this |
The scatter_plot_data object. |
The scaling factor.
Gets a value determining if the stored data should be simplified (reduced) before passing to GNUPLOT.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(in) | :: | this |
The scatter_plot_data object. |
True if the data should be simplified prior to sending to GNUPLOT; else, false to leave the data alone.
Gets a value determing if data-dependent colors should be used.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(in) | :: | this |
The scatter_plot_data object. |
True if data-dependent colors should be used; else, false.
Gets a logical value determining if variable sized data points should be used. The default is false, such that points will be of a constant size.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(in) | :: | this |
The scatter_plot_data object. |
True if variable size points should be used; else, false.
Gets the requested X data point.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_2d), | intent(in) | :: | this |
The plot_data_2d object. |
||
integer(kind=int32), | intent(in) | :: | index |
The index of the data point to retrieve. |
The requested data point.
Gets the stored X data array.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_2d), | intent(in) | :: | this |
The plot_data_2d object. |
A copy of the stored data array.
Gets the requested Y data point.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_2d), | intent(in) | :: | this |
The plot_data_2d object. |
||
integer(kind=int32), | intent(in) | :: | index |
The index of the data point to retrieve. |
The requested data point.
Gets the stored Y data array.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_2d), | intent(in) | :: | this |
The plot_data_2d object. |
A copy of the stored data array.
Defines the data set to plot.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_2d), | intent(inout) | :: | this |
The plot_data_2d object. |
||
real(kind=real64), | intent(in), | dimension(:) | :: | x |
An N-element array containing the x coordinate data. |
|
real(kind=real64), | intent(in), | dimension(:) | :: | y |
An N-element array containing the y coordinate data. |
|
real(kind=real64), | intent(in), | optional, | dimension(:) | :: | c |
An N-element array defining how color should vary with the current colormap for each value. |
real(kind=real64), | intent(in), | optional, | dimension(:) | :: | ps |
An N-element array defining the size of each data point. |
class(errors), | intent(inout), | optional, | target | :: | err |
An error-handling object. |
Defines the data set to plot.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_2d), | intent(inout) | :: | this |
The plot_data_2d object. |
||
real(kind=real64), | intent(in), | dimension(:) | :: | y |
An N-element array containing the y-coordinate data. This data will be plotted against its own index. |
|
class(errors), | intent(inout), | optional, | target | :: | err |
An error-handling object. |
Sets the color index.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_colored), | intent(inout) | :: | this |
The plot_data_colored object. |
||
integer(kind=int32), | intent(in) | :: | x |
The index value. |
Sets a value determining if the data should be plotted against the secondary y-axis.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_2d), | intent(inout) | :: | this |
The plot_data_2d object. |
||
logical, | intent(in) | :: | x |
Set to true if the data should be plotted against the secondary y-axis; else, false to plot against the primary y-axis. |
Sets a value determining if a line should be drawn.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(inout) | :: | this |
The scatter_plot_data object. |
||
logical, | intent(in) | :: | x |
Set to true if the line should be drawn; else, false. |
Sets a value determining if data point markers should be drawn.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(inout) | :: | this |
The scatter_plot_data object. |
||
logical, | intent(in) | :: | x |
Set to true if the markers should be drawn; else, false. |
Sets a logical value determining if a filled curve should be drawn.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(inout) | :: | this |
The scatter_plot_data object. |
||
logical, | intent(in) | :: | x |
True if the curve should be filled; else, false. |
Sets the object color.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_colored), | intent(inout) | :: | this |
The plot_data_colored object. |
||
type(color), | intent(in) | :: | x |
The color. |
Sets the line style.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(inout) | :: | this |
The scatter_plot_data object. |
||
integer(kind=int32), | intent(in) | :: | x |
The line style. The line style must be one of the following.
|
Sets the width of the line, in pixels.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(inout) | :: | this |
The scatter_plot_data object. |
||
real(kind=real32), | intent(in) | :: | x |
The line width. |
Sets the marker frequency.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(inout) | :: | this |
The scatter_plot_data object. |
||
integer(kind=int32), | intent(in) | :: | x |
The marker frequency. |
Sets the marker scaling.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(inout) | :: | this |
The scatter_plot_data object. |
||
real(kind=real32), | intent(in) | :: | x |
The scaling factor. |
Sets the marker style.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(inout) | :: | this |
The scatter_plot_data object. |
||
integer(kind=int32), | intent(in) | :: | x |
The marker type. The marker type must be one of the following:
|
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 factor used to establish the simplification tolerance.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(inout) | :: | this |
The scatter_plot_data object. |
||
real(kind=real64), | intent(in) | :: | x |
The scaling factor. |
Sets a value determining if the stored data should be simplified (reduced) before passing to GNUPLOT.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(inout) | :: | this |
The scatter_plot_data object. |
||
logical, | intent(in) | :: | x |
True if the data should be simplified prior to sending to GNUPLOT; else, false to leave the data alone. |
Sets a value determing if data-dependent colors should be used.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(inout) | :: | this |
The scatter_plot_data object. |
||
logical, | intent(in) | :: | x |
True if data-dependent colors should be used; else, false. |
Sets a logical value determining if variable sized data points should be used. The default is false, such that points will be of a constant size.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(scatter_plot_data), | intent(inout) | :: | this |
The scatter_plot_data object. |
||
logical, | intent(in) | :: | x |
True if variable size points should be used; else, false. |
Sets the requested X data point.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_2d), | intent(inout) | :: | this |
The plot_data_2d object. |
||
integer(kind=int32), | intent(in) | :: | index |
The index of the data point to replace. |
||
real(kind=real64), | intent(in) | :: | x |
The data point. |
Sets the requested Y data point.
Type | Intent | Optional | Attributes | Name | ||
---|---|---|---|---|---|---|
class(plot_data_2d), | intent(inout) | :: | this |
The plot_data_2d object. |
||
integer(kind=int32), | intent(in) | :: | index |
The index of the data point to replace. |
||
real(kind=real64), | intent(in) | :: | x |
The data point. |