# HG changeset patch # User Rik # Date 1295104355 28800 # Node ID 8f90ffe3c5f994c20ba603433db7d586a9a991a0 # Parent 2c5219471c861829f53a8eae7a34bf859db982e8 Add stdnormal_xxx family of functions to documentation. diff -r 2c5219471c86 -r 8f90ffe3c5f9 doc/ChangeLog --- a/doc/ChangeLog Sat Jan 15 04:57:42 2011 -0500 +++ b/doc/ChangeLog Sat Jan 15 07:12:35 2011 -0800 @@ -1,3 +1,7 @@ +2011-01-15 Rik + + * interpreter/stats.txi: Add stdnormal_xxx functions to documentation. + 2011-01-14 Rik * interpreter/matrix.txi: Add undocumented postpad to documentation. diff -r 2c5219471c86 -r 8f90ffe3c5f9 doc/interpreter/stats.txi --- a/doc/interpreter/stats.txi Sat Jan 15 04:57:42 2011 -0500 +++ b/doc/interpreter/stats.txi Sat Jan 15 07:12:35 2011 -0800 @@ -211,9 +211,10 @@ &Laplace && laplace\_pdf && laplace\_cdf && laplace\_inv&\cr &Logistic && logistic\_pdf && logistic\_cdf && logistic\_inv&\cr &Log-Normal && lognpdf && logncdf && logninv&\cr +&Univariate Normal && normpdf && normcdf && norminv&\cr &Pascal && nbinpdf && nbincdf && nbininv&\cr -&Univariate Normal && normpdf && normcdf && norminv&\cr &Poisson && poisspdf && poisscdf && poissinv&\cr +&Standard Normal && stdnormal\_pdf && stdnormal\_cdf && stdnormal\_inv&\cr &t (Student) && tpdf && tcdf && tinv&\cr &Univariate Discrete && unidpdf && unidcdf && unidinv&\cr &Uniform && unifpdf && unifcdf && unifinv&\cr @@ -287,18 +288,22 @@ @tab @code{lognpdf} @tab @code{logncdf} @tab @code{logninv} +@item Univariate Normal Distribution + @tab @code{normpdf} + @tab @code{normcdf} + @tab @code{norminv} @item Pascal Distribution @tab @code{nbinpdf} @tab @code{nbincdf} @tab @code{nbininv} -@item Univariate Normal Distribution - @tab @code{normpdf} - @tab @code{normcdf} - @tab @code{norminv} @item Poisson Distribution @tab @code{poisspdf} @tab @code{poisscdf} @tab @code{poissinv} +@item Standard Normal Distribution + @tab @code{stdtormal_pdf} + @tab @code{stdtormal_cdf} + @tab @code{stdtormal_inv} @item t (Student) Distribution @tab @code{tpdf} @tab @code{tcdf} @@ -422,6 +427,12 @@ @DOCSTRING(poissinv) +@DOCSTRING(stdnormal_pdf) + +@DOCSTRING(stdnormal_cdf) + +@DOCSTRING(stdnormal_inv) + @DOCSTRING(tpdf) @DOCSTRING(tcdf) @@ -602,6 +613,7 @@ & Pascal Distribution && nbinrnd &\cr & Univariate Normal Distribution && normrnd &\cr & Poisson Distribution && poissrnd &\cr +& Standard Normal Distribution && stdnormal\_rnd &\cr & t (Student) Distribution && trnd &\cr & Univariate Discrete Distribution && unidrnd &\cr & Uniform Distribution && unifrnd &\cr @@ -630,6 +642,7 @@ @item Pascal Distribution @tab @code{nbinrnd} @item Univariate Normal Distribution @tab @code{normrnd} @item Poisson Distribution @tab @code{poissrnd} +@item Standard Normal Distribution @tab @code{stdnormal_rnd} @item t (Student) Distribution @tab @code{trnd} @item Univariate Discrete Distribution @tab @code{unidrnd} @item Uniform Distribution @tab @code{unifrnd} @@ -672,6 +685,8 @@ @DOCSTRING(poissrnd) +@DOCSTRING(stdnormal_rnd) + @DOCSTRING(trnd) @DOCSTRING(unidrnd)