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