ParaMonte MATLAB 3.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation. |
This is the base class for generating instances of figures containing a tile of subplots.
More...
Public Member Functions | |
function | Tiling (in subplot, in varargin) |
Construct and return an object of class pm.vis.Tiling. More... | |
function | make (in self, in varargin) |
Configure the figure settings and specifications, make the figure and the subplots, and return nothing. More... | |
function | reset (in self, in varargin) |
Reset the properties of the figure to the original default settings. More... | |
function | premake (in self, in varargin) |
Preset the tiling settings before making it. More... | |
Data Fields | |
Property | tiledlayout |
Property | subplot |
This is the base class for generating instances of figures containing a tile of subplots.
Final Remarks ⛓
If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.
This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.
function Tiling::Tiling | ( | in | subplot, |
in | varargin | ||
) |
Construct and return an object of class pm.vis.Tiling.
This is the constructor of the class pm.vis.Tiling.
[in] | subplot | : The input cell matrix of MATLAB objects of superclass pm.vis.Subplot. |
[in] | varargin | : Any property, value pair of the parent object.If the property is a struct() , then its value must be given as a cell array, with consecutive elements representing the struct property-name, property-value pairs.Note that all of these property-value pairs can be also directly set via the parent object attributes, before calling the make() method. |
self
: The output scalar object of class pm.vis.Tiling.
Possible calling interfaces ⛓
Final Remarks ⛓
If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.
This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.
function Tiling::make | ( | in | self, |
in | varargin | ||
) |
Configure the figure settings and specifications, make the figure and the subplots, and return nothing.
The subplots are made by calling their make()
methods.
[in] | self | : The implicitly-passed input argument representing the parent object of the method. |
[in] | varargin | : Any property, value pair of the parent object.If the property is a struct() , then its value must be given as a cell array, with consecutive elements representing the struct property-name, property-value pairs.Note that all of these property-value pairs can be also directly set via the parent object attributes, before calling the make() method. |
Possible calling interfaces ⛓
Final Remarks ⛓
If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.
This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.
function Tiling::premake | ( | in | self, |
in | varargin | ||
) |
Preset the tiling settings before making it.
[in] | self | : The implicitly-passed input argument representing the parent object of the method. |
[in] | varargin | : Any property, value pair of the parent object.If the property is a struct() , then its value must be given as a cell array, with consecutive elements representing the struct property-name, property-value pairs.Note that all of these property-value pairs can be also directly set via the parent object attributes, before calling the make() method. |
Possible calling interfaces ⛓
Final Remarks ⛓
If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.
This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.
function Tiling::reset | ( | in | self, |
in | varargin | ||
) |
Reset the properties of the figure to the original default settings.
Use this method when you change many attributes of the plot and you want to clean up and go back to the default settings.
[in] | self | : The implicitly-passed input argument representing the parent object of the method. |
[in] | varargin | : Any property, value pair of the parent object.If the property is a struct() , then its value must be given as a cell array, with consecutive elements representing the struct property-name, property-value pairs.Note that all of these property-value pairs can be also directly set via the parent object attributes, before calling the make() method. |
Possible calling interfaces ⛓
Final Remarks ⛓
If you believe this algorithm or its documentation can be improved, we appreciate your contribution and help to edit this page's documentation and source file on GitHub.
For details on the naming abbreviations, see this page.
For details on the naming conventions, see this page.
This software is distributed under the MIT license with additional terms outlined below.
This software is available to the public under a highly permissive license.
Help us justify its continued development and maintenance by acknowledging its benefit to society, distributing it, and contributing to it.
Property Tiling::subplot |
subplot
The MATLAB cell matrix containing objects of superclass pm.vis.Subplot each of which represents one subplot axes to display in the figure.
Property Tiling::tiledlayout |
tiledlayout
A MATLAB struct
whose fields and values are passed as keyword arguments to the MATLAB intrinsic tiledlayout()
.