ParaMonte MATLAB 3.0.0
Parallel Monte Carlo and Machine Learning Library
See the latest version documentation.
tab.m
Go to the documentation of this file.
1%> \brief
2%> Return a scalar MATLAB string containing ``4``
3%> blank characters equivalent to a tab character.
4%>
5%> \details
6%> This function primarily exists to bring
7%> consistency to the ParaMonte library IO tasks.
8%>
9%> \return
10%> ``str`` : The output scalar MATLAB string containing ``4``
11%> blank characters equivalent to a tab character.
12%>
13%> \interface{tab}
14%> \code{.m}
15%>
16%> str = pm.io.tab()
17%>
18%> \endcode
19%>
20%> \final{tab}
21%>
22%> \author
23%> \JoshuaOsborne, May 21 2024, 5:58 PM, University of Texas at Arlington<br>
24%> \FatemehBagheri, May 20 2024, 1:25 PM, NASA Goddard Space Flight Center (GSFC), Washington, D.C.<br>
25%> \AmirShahmoradi, May 16 2016, 9:03 AM, Oden Institute for Computational Engineering and Sciences (ICES), UT Austin<br>
26function str = tab()
27 str = " ";
28end
function tab()
Return a scalar MATLAB string containing 4 blank characters equivalent to a tab character.