ParaMonte MATLAB 3.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
SubplotHistogram.m
Go to the documentation of this file.
1%> \brief
2%> This is the SubplotHistogram class for generating
3%> instances of 1-dimensional Histogram [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.SubplotHistogram](@ref SubplotHistogram::SubplotHistogram) for example usage.<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%> \JoshuaOsborne, May 21 2024, 6:05 PM, University of Texas at Arlington<br>
23%> \FatemehBagheri, May 20 2024, 1:25 PM, NASA Goddard Space Flight Center (GSFC), Washington, D.C.<br>
24%> \AmirShahmoradi, May 16 2016, 9:03 AM, Oden Institute for Computational Engineering and Sciences (ICES), UT Austin<br>
25classdef SubplotHistogram < pm.vis.Subplot
26
27 methods(Access = public)
28
29 %> \brief
30 %> Construct and return an object of class [pm.vis.SubplotHistogram](@ref SubplotHistogram).<br>
31 %>
32 %> \details
33 %> This is the constructor of the class [pm.vis.SubplotHistogram](@ref SubplotHistogram).<br>
34 %>
35 %> \param[in] dfref : See the documentation of the corresponding input
36 %> argument of the superclass [pm.vis.Subplot](@ref Subplot).<br>
37 %> \param[in] varargin : Any ``property, value`` pair of the parent object.<br>
38 %> If the property is a ``struct()``, then its value must be given as a cell array,
39 %> with consecutive elements representing the struct ``property-name, property-value`` pairs.<br>
40 %> Note that all of these property-value pairs can be also directly set via the
41 %> parent object attributes, before calling the ``make()`` method.<br>
42 %>
43 %> \return
44 %> ``self`` : The output object of class [pm.vis.SubplotHistogram](@ref SubplotHistogram).<br>
45 %>
46 %> \interface{SubplotHistogram}
47 %> \code{.m}
48 %>
49 %> s = pm.vis.SubplotHistogram(dfref);
50 %> s = pm.vis.SubplotHistogram(dfref, varargin);
51 %>
52 %> \endcode
53 %>
54 %> \note
55 %> See also the documentation of the attributes
56 %> of the superclass [pm.vis.Subplot](@ref Subplot).<br>
57 %>
58 %> \example{SubplotHistogram}
59 %> \include{lineno} example/vis/SubplotHistogram/main.m
60 %> \vis{Subplot}
61 %> <br>\image html example/vis/SubplotHistogram/SubplotHistogram.1.png width=700
62 %>
63 %> \final{SubplotHistogram}
64 %>
65 %> \author
66 %> \JoshuaOsborne, May 21 2024, 6:05 PM, University of Texas at Arlington<br>
67 %> \FatemehBagheri, May 20 2024, 1:25 PM, NASA Goddard Space Flight Center (GSFC), Washington, D.C.<br>
68 %> \AmirShahmoradi, May 16 2016, 9:03 AM, Oden Institute for Computational Engineering and Sciences (ICES), UT Austin<br>
69 function self = SubplotHistogram(dfref, varargin)
70 if nargin < 1
71 dfref = [];
72 end
73 self = self@pm.vis.Subplot("Histogram", dfref, varargin{:});
74 end
75
76 end
77
78end
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 SubplotHistogram class for generating instances of 1-dimensional Histogram Subplot visual...
function SubplotHistogram(in dfref, in varargin)
Construct and return an object of class pm.vis.SubplotHistogram.
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