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