ParaMonte MATLAB 3.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
getppm.m
Go to the documentation of this file.
1%> \brief
2%> Generate and return the relevant Post-Processing Message (ppm) for the current ParaMonte
3%> sampler to be displayed on the MATLAB command line after the sampling is complete.<br>
4%>
5%> \details
6%> This is a ``private`` dynamic method of the [pm.sampling.Paradram](@ref Paradram) sampler class.<br>
7%> This method is not meant to be used or accessed by the end users.<br>
8%>
9%> \param[in] self : The input parent object of class [pm.sampling.Sampler](@ref Sampler)
10%> which is **implicitly** passed to this dynamic method (not by the user).<br>
11%>
12%> \note
13%> This is an internal method of the class [pm.sampling.Sampler](@ref Sampler).
14%>
15%> \final{getppm}
16%>
17%> \author
18%> \AmirShahmoradi, September 1, 2012, 12:00 AM, National Institute for Fusion Studies, The University of Texas at Austin%>
19function ppm = getppm(self)
20 ppm = "Use the following object methods to read the generated basic output files: " + newline ...
21 + newline ...
22 + pm.io.tab + self.name + ".readChain() % Return a list of the contents of the output chain file(s)." + newline ...
23 + pm.io.tab + self.name + ".readSample() % Return a list of i.i.d. sample(s) from the output sample file(s)." + newline ...
24 + pm.io.tab + self.name + ".readReport() % Return a list of summary report(s) from the output report file(s)." + newline ...
25 + pm.io.tab + self.name + ".readRestart() % Return a list of the contents of the ASCII output restart file(s)." + newline ...
26 + pm.io.tab + self.name + ".readProgress() % Return a list of the contents of the output progress file(s)." + newline ...
27 ;
28end
This is the ParaDRAM class for generating instances of serial and parallel Delayed-Rejection Adaptive...
Definition: Paradram.m:18
This is the base class for the ParaMonte sampler routines.
Definition: Sampler.m:21
function which(in vendor)
Return the a MATLAB string containing the path to the first mpiexec executable binary found in system...