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)
20ppm = getppm@pm.sampling.Sampler(self) + newline ...
21+ "Use the following object method to read the generated basic output chain file and and unroll the contents as a Markov Chain: " + newline ...
22+ newline ...
23+ pm.io.tab + self.name + ".readChainMarkov() % Return a list of the unrolled contents of the output chain file(s) as Markov Chains." + newline ...
24+ newline ...
25+ "Beware that the chain unrolling significantly increases the chain size and can be very slow." + newline ...
26+ "It can potentially overflow the computer RAM for high-dimensional target density functions." + 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...