ParaMonte MATLAB 3.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
SubplotContourf.m
Go to the documentation of this file.
1%> \brief
2%> This is the SubplotContourf class for generating
3%> instances of 2-dimensional Contour [Subplot visualizations](@ref Subplot)
4%> based on the relevant MATLAB
5%> intrinsic functions.<br>
6%>
7%> \note
8%> See the documentation of the constructor of the class
9%> [pm.vis.SubplotContourf](@ref SubplotContourf::SubplotContourf) for example usage.<br>
10%>
11%> \note
12%> See the documentation of the attributes
13%> of the superclass [pm.vis.Subplot](@ref Subplot).<br>
14%>
15%> \see
16%> [pm.vis.Cascade](@ref Cascade)<br>
17%> [pm.vis.Subplot](@ref Subplot)<br>
18%> [pm.vis.Figure](@ref Figure)<br>
19%> [pm.vis.Corner](@ref Corner)<br>
20%> [pm.vis.Plot](@ref Plot)<br>
21%> [pm.vis.Tile](@ref Tile)<br>
22%>
23%> \final
24%>
25%> \author
26%> \JoshuaOsborne, May 21 2024, 6:05 PM, University of Texas at Arlington<br>
27%> \FatemehBagheri, May 20 2024, 1:25 PM, NASA Goddard Space Flight Center (GSFC), Washington, D.C.<br>
28%> \AmirShahmoradi, May 16 2016, 9:03 AM, Oden Institute for Computational Engineering and Sciences (ICES), UT Austin<br>
29classdef SubplotContourf < pm.vis.Subplot
30
31 methods(Access = public)
32
33 %> \brief
34 %> Construct and return an object of class [pm.vis.SubplotContourf](@ref SubplotContourf).<br>
35 %>
36 %> \details
37 %> This is the constructor of the class [pm.vis.SubplotContourf](@ref SubplotContourf).<br>
38 %>
39 %> \param[in] dfref : See the documentation of the corresponding input
40 %> argument of the superclass [pm.vis.Subplot](@ref Subplot).<br>
41 %> \param[in] varargin : Any ``property, value`` pair of the parent object.<br>
42 %> If the property is a ``struct()``, then its value must be given as a cell array,
43 %> with consecutive elements representing the struct ``property-name, property-value`` pairs.<br>
44 %> Note that all of these property-value pairs can be also directly set via the
45 %> parent object attributes, before calling the ``make()`` method.<br>
46 %>
47 %> \return
48 %> ``self`` : The output object of class [pm.vis.SubplotContourf](@ref SubplotContourf).<br>
49 %>
50 %> \interface{SubplotContourf}
51 %> \code{.m}
52 %>
53 %> s = pm.vis.SubplotContourf(dfref);
54 %> s = pm.vis.SubplotContourf(dfref, varargin);
55 %>
56 %> \endcode
57 %>
58 %> \note
59 %> See also the documentation of the attributes
60 %> of the superclass [pm.vis.Subplot](@ref Subplot).<br>
61 %>
62 %> \example{SubplotContourf}
63 %> \include{lineno} example/vis/SubplotContourf/main.m
64 %> \vis{SubplotContourf}
65 %> <br>\image html example/vis/SubplotContourf/SubplotContourf.1.png width=700
66 %>
67 %> \final{SubplotContourf}
68 %>
69 %> \author
70 %> \JoshuaOsborne, May 21 2024, 6:05 PM, University of Texas at Arlington<br>
71 %> \FatemehBagheri, May 20 2024, 1:25 PM, NASA Goddard Space Flight Center (GSFC), Washington, D.C.<br>
72 %> \AmirShahmoradi, May 16 2016, 9:03 AM, Oden Institute for Computational Engineering and Sciences (ICES), UT Austin<br>
73 function self = SubplotContourf(dfref, varargin)
74 if nargin < 1
75 dfref = [];
76 end
77 self = self@pm.vis.Subplot("Contourf", dfref, varargin{:});
78 end
79
80 end
81
82end
function name(in vendor)
Return the MPI library name as used in naming the ParaMonte MATLAB shared libraries.
This is the abstract class for generating instances of objects that contain the specifications of a c...
Definition: Cascade.m:32
This is the base class for generating instances of figures containing a symmetric square grid or corn...
Definition: Corner.m:19
This is the abstract class for generating instances of objects that contain the specifications of var...
Definition: Figure.m:27
This is the base class for generating instances of objects that contain the specifications of various...
Definition: Plot.m:29
This is the SubplotContourf class for generating instances of 2-dimensional Contour Subplot visualiza...
function SubplotContourf(in dfref, in varargin)
Construct and return an object of class pm.vis.SubplotContourf.
This is the abstract class for generating instances of axes with various types of plots from one or m...
Definition: Subplot.m:188
This is the abstract class for generating instances of objects that contain the specifications of var...
Definition: Tile.m:9