ParaMonte MATLAB 3.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
TileHistfit.m
Go to the documentation of this file.
1%> \brief
2%> This is the TileHistfit class for generating
3%> instances of 1-dimensional Histfit [Tile visualizations](@ref Tile)
4%> based on the relevant MATLAB
5%> intrinsic functions.
6%>
7%> \note
8%> See the documentation of the attributes
9%> of the superclass [pm.vis.Tile](@ref Tile).
10%>
11%> \note
12%> The input ``varargin`` can also contain the components
13%> of the ``subplot`` component of the parent object.
14%>
15classdef TileHistfit < pm.vis.Tile
16
17 methods(Access = public)
18
19 %> \brief
20 %> Construct and return an object of class [pm.vis.TileHistfit](@ref TileHistfit).<br>
21 %>
22 %> \details
23 %> This is the constructor of the class [pm.vis.TileHistfit](@ref TileHistfit).<br>
24 %>
25 %> \param[in] dfref : See the documentation of the corresponding input
26 %> argument of the class [pm.vis.Subplot](@ref Subplot).<br>
27 %> \param[in] varargin : Any ``property, value`` pair of the parent object.<br>
28 %> If the property is a ``struct()``, then its value must be given as a cell array,
29 %> with consecutive elements representing the struct ``property-name, property-value`` pairs.
30 %> Note that all of these property-value pairs can be also directly set via the
31 %> parent object attributes, before calling the ``make()`` method.
32 %>
33 %> \return
34 %> An object of [pm.vis.TileHistfit](@ref TileHistfit) class.
35 %>
36 %> \interface{TileHistfit}
37 %> \code{.m}
38 %>
39 %> t = pm.vis.TileHistfit(dfref);
40 %> t = pm.vis.TileHistfit(dfref, varargin);
41 %>
42 %> \endcode
43 %>
44 %> \final{TileHistfit}
45 %>
46 %> \author
47 %> \JoshuaOsborne, May 22 2024, 7:22 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 = TileHistfit(dfref, varargin)
51 if nargin < 1
52 dfref = [];
53 end
54 self = self@pm.vis.Tile(pm.vis.SubplotHistfit(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 TileHistfit class for generating instances of 1-dimensional Histfit Tile visualizations b...
Definition: TileHistfit.m:16
function TileHistfit(in dfref, in varargin)
Construct and return an object of class pm.vis.TileHistfit.
This is the abstract class for generating instances of objects that contain the specifications of var...
Definition: Tile.m:9