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