ParaMonte MATLAB 3.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
TileContour.m
Go to the documentation of this file.
1%> \brief
2%> This is the TileContour class for generating
3%> instances of 2-dimensional Contour [Tile visualizations](@ref Tile)
4%> based on the relevant MATLAB
5%> intrinsic functions.
6%>
7classdef TileContour < pm.vis.Tile
8
9 methods(Access = public)
10
11 %> \brief
12 %> Construct and return an object of class [pm.vis.TileContour](@ref TileContour).<br>
13 %>
14 %> \details
15 %> This is the constructor of the class [pm.vis.TileContour](@ref TileContour).<br>
16 %>
17 %> \param[in] dfref : See the documentation of the corresponding input
18 %> argument of the class [pm.vis.Subplot](@ref Subplot).<br>
19 %> \param[in] varargin : Any ``property, value`` pair of the parent object.<br>
20 %> If the property is a ``struct()``, then its value must be given as a cell array,
21 %> with consecutive elements representing the struct ``property-name, property-value`` pairs.
22 %> Note that all of these property-value pairs can be also directly set via the
23 %> parent object attributes, before calling the ``make()`` method.
24 %>
25 %> \note
26 %> The input ``varargin`` can also contain the components
27 %> of the ``subplot`` component of the parent object.
28 %>
29 %> \note
30 %> See the documentation of the attributes
31 %> of the superclass [pm.vis.Tile](@ref Tile).
32 %>
33 %> \return
34 %> An object of [pm.vis.TileContour](@ref TileContour) class.
35 %>
36 %> \interface{TileContour}
37 %> \code{.m}
38 %>
39 %> t = pm.vis.TileContour(dfref);
40 %> t = pm.vis.TileContour(dfref, varargin);
41 %>
42 %> \endcode
43 %>
44 %> \final{TileContour}
45 %>
46 %> \author
47 %> \JoshuaOsborne, May 22 2024, 7:39 PM, University of Texas at Arlington<br>
48 %> \FatemehBagheri, May 20 2024, 1:25 PM, NASA Goddard Space Flight Center (GSFC), Washington, D.C.<br>
49 %> \AmirShahmoradi, May 16 2016, 9:03 AM, Oden Institute for Computational Engineering and Sciences (ICES), UT Austin<br>
50 function self = TileContour(dfref, varargin)
51 if nargin < 1
52 dfref = [];
53 end
54 self = self@pm.vis.Tile(pm.vis.SubplotContour(dfref), varargin{:});
55 end
56
57 end
58
59end
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 axes with various types of plots from one or m...
Definition: Subplot.m:188
This is the TileContour class for generating instances of 2-dimensional Contour Tile visualizations b...
Definition: TileContour.m:8
function TileContour(in dfref, in varargin)
Construct and return an object of class pm.vis.TileContour.
This is the abstract class for generating instances of objects that contain the specifications of var...
Definition: Tile.m:9