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