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