ParaMonte MATLAB 3.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
CascadeEllipse3.m
Go to the documentation of this file.
1%> \brief
2%> This is the CascadeEllipse3 class for generating
3%> instances of 3-dimensional Ellipse [Cascade visualizations](@ref Cascade)
4%> based on the relevant MATLAB
5%> intrinsic functions.<br>
6%>
7%> \note
8%> See the list of class attributes below,
9%> also those of the superclass [pm.vis.Cascade](@ref Cascade).<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%> \FatemehBagheri, May 20 2024, 1:25 PM, NASA Goddard Space Flight Center (GSFC), Washington, D.C.<br>
23%> \AmirShahmoradi, May 16 2016, 9:03 AM, Oden Institute for Computational Engineering and Sciences (ICES), UT Austin<br>
24classdef CascadeEllipse3 < pm.vis.Cascade
25
26 methods(Access = public)
27
28 %> \brief
29 %> Construct and return an object of class [pm.vis.CascadeEllipse3](@ref CascadeEllipse3).<br>
30 %>
31 %> \param[in] gramian : See the corresponding input argument to the class [pm.vis.PlotEllipse3](@ref PlotEllipse3).<br>
32 %> \param[in] center : See the corresponding input argument to the class [pm.vis.PlotEllipse3](@ref PlotEllipse3).<br>
33 %> \param[in] zval : See the corresponding input argument to the class [pm.vis.PlotEllipse3](@ref PlotEllipse3).<br>
34 %> \param[in] cval : See the corresponding input argument to the class [pm.vis.PlotEllipse3](@ref PlotEllipse3).<br>
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`` : The output scalar object of class [pm.vis.CascadeEllipse3](@ref CascadeEllipse3).<br>
43 %>
44 %> \interface{CascadeEllipse3}
45 %> \code{.m}
46 %>
47 %> p = pm.vis.CascadeEllipse3();
48 %> p = pm.vis.CascadeEllipse3(gramian);
49 %> p = pm.vis.CascadeEllipse3(gramian, center);
50 %> p = pm.vis.CascadeEllipse3(gramian, center, zval);
51 %> p = pm.vis.CascadeEllipse3(gramian, center, zval, cval);
52 %> p = pm.vis.CascadeEllipse3(gramian, center, zval, cval, varargin);
53 %>
54 %> \endcode
55 %>
56 %> \note
57 %> The input ``varargin`` can also contain the components
58 %> of the ``template`` component of the parent object.<br>
59 %>
60 %> \note
61 %> See the documentation of the attributes
62 %> of the superclass [pm.vis.Cascade](@ref Cascade).<br>
63 %>
64 %> \example{CascadeEllipse3}
65 %> \include{lineno} example/vis/CascadeEllipse3/main.m
66 %> \vis{CascadeEllipse3}
67 %> \image html example/vis/CascadeEllipse3/CascadeEllipse3.window.1.png width=700
68 %> \image html example/vis/CascadeEllipse3/CascadeEllipse3.window.2.png width=700
69 %> \image html example/vis/CascadeEllipse3/CascadeEllipse3.window.3.png width=700
70 %>
71 %> \author
72 %> \JoshuaOsborne, May 21 2024, 7:21 AM, University of Texas at Arlington<br>
73 %> \FatemehBagheri, May 20 2024, 1:25 PM, NASA Goddard Space Flight Center (GSFC), Washington, D.C.<br>
74 %> \AmirShahmoradi, May 16 2016, 9:03 AM, Oden Institute for Computational Engineering and Sciences (ICES), UT Austin<br>
75 function self = CascadeEllipse3(gramian, center, zval, cval, varargin)
76 %%%% Define the missing optional values as empty with the right rank.
77 if nargin < 4
78 cval = zeros(0, 0);
79 end
80 if nargin < 3
81 zval = zeros(0, 0);
82 end
83 if nargin < 2
84 center = zeros(0, 0);
85 end
86 if nargin < 1
87 gramian = zeros(0, 0, 0);
88 end
89 self = self@pm.vis.Cascade(pm.vis.PlotEllipse3(gramian, center, zval, cval), varargin{:});
90 end
91
92 end
93
94end
function name(in vendor)
Return the MPI library name as used in naming the ParaMonte MATLAB shared libraries.
function list()
Return a list of MATLAB strings containing the names of OS platforms supported by the ParaMonte MATLA...
This is the CascadeEllipse3 class for generating instances of 3-dimensional Ellipse Cascade visualiza...
function CascadeEllipse3(in gramian, in center, in zval, in cval, in varargin)
Construct and return an object of class pm.vis.CascadeEllipse3.
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 PlotEllipse3 class for generating instances of 3-dimensional Ellipse Plot visualizations ...
Definition: PlotEllipse3.m:29
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