ParaMonte MATLAB 3.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
TileLine3.m
Go to the documentation of this file.
1%> \brief
2%> This is the TileLine3 class for generating
3%> instances of 3-dimensional Line3 [Tile visualizations](@ref Tile)
4%> based on the relevant MATLAB
5%> intrinsic functions.
6classdef TileLine3 < pm.vis.Tile
7
8 methods(Access = public)
9
10 %> \brief
11 %> Construct and return an object of class [pm.vis.TileLine3](@ref TileLine3).<br>
12 %>
13 %> \details
14 %> This is the constructor of the class [pm.vis.TileLine3](@ref TileLine3).<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.TileLine3](@ref TileLine3) class.
34 %>
35 %> \interface{TileLine3}
36 %> \code{.m}
37 %> t = pm.vis.TileLine3(dfref);
38 %> t = pm.vis.TileLine3(dfref, varargin);
39 %>
40 %> \endcode
41 %>
42 %> \final{TileLine3}
43 %>
44 %> \author
45 %> \JoshuaOsborne, May 22 2024, 7:29 PM, University of Texas at Arlington<br>
46 %> \FatemehBagheri, May 20 2024, 1:25 PM, NASA Goddard Space Flight Center (GSFC), Washington, D.C.<br>
47 %> \AmirShahmoradi, May 16 2016, 9:03 AM, Oden Institute for Computational Engineering and Sciences (ICES), UT Austin<br>
48 function self = TileLine3(dfref, varargin)
49 if nargin < 1
50 dfref = [];
51 end
52 self = self@pm.vis.Tile(pm.vis.SubplotLine3(dfref), varargin{:});
53 end
54
55 end
56
57end
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 TileLine3 class for generating instances of 3-dimensional Line3 Tile visualizations based...
Definition: TileLine3.m:7
function TileLine3(in dfref, in varargin)
Construct and return an object of class pm.vis.TileLine3.
This is the abstract class for generating instances of objects that contain the specifications of var...
Definition: Tile.m:9