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