Loading [MathJax]/extensions/tex2jax.js
ParaMonte MATLAB 3.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
All Data Structures Files Functions Variables Pages
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<br>
19function ppm = getppm(self)
20 baselink = self._weblinks.docs.generic.usage.sampling.paradram.quickstart.url
21 ppm = getppm@pm.sampling.Sampler(self) ...
22 + "Use the following object method to read the generated basic output chain file and and unroll the contents as a Markov Chain: " + newline ...
23 + newline ...
24 + pm.io.tab() + self.name + ".readChainMarkov() % Return a list of the unrolled output chain file(s) contents as Markov Chains." + newline ...
25 + newline ...
26 + "Beware that the chain unrolling significantly increases the chain size and can be very slow." + newline ...
27 + "It can potentially overflow the computer RAM for high-dimensional target density functions." + newline ...
28 + newline ...
29 + "For more information and usage examples for the ParaDRAM class of MCMC samplers, visit:" + newline ...
30 + newline ...
31 + pm.io.tab() + baselink + "/#calling-the-paradram-sampler-from-python\n\n" + newline ...
32 ;
33end
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...