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