On Fri, 4 Feb 2011, Riccardo (Jack) Lucchetti wrote:
On Fri, 4 Feb 2011, GREg Ory wrote:
> After searching in the manual and the list it seems that only the
> model (i.e. Model 1,2,3,4) can be saved in the LaTex format and what
> shows on the output screen cannot.
>
> How is it possible to add the estimates of mu and sigma to the model
> that is calculated?
>
> In other words what do we need to add to the script to get what is
> written in the output window in the red circle to the model in the
> green sircle if it's possible of course. (please see the attached
> screenshot)
Maybe it's not exactly what you're looking for, but the modprint command
has a --tex option (which is, I now realise, undocumented - sorry!).
Yes, you can find the modprint command in the script and modify it
thus:
outfile nls.tex --write
modprint cfse vnam --tex
outfile --close
The output, nls.tex, is not a complete LaTeX file, it will have to
be included in a holder, as in
\documentclass{article}
\begin{document}
\input nls.tex
\end{document}
Allin Cottrell