Mercurial > hg > octave-nkf
diff scripts/statistics/models/logistic_regression.m @ 9051:1bf0ce0930be
Grammar check TexInfo in all .m files
Cleanup documentation sources to follow a few consistent rules.
Spellcheck was NOT done. (but will be in another changeset)
author | Rik <rdrider0-list@yahoo.com> |
---|---|
date | Fri, 27 Mar 2009 22:31:03 -0700 |
parents | 120f3135952f |
children | 16f53d29049f |
line wrap: on
line diff
--- a/scripts/statistics/models/logistic_regression.m +++ b/scripts/statistics/models/logistic_regression.m @@ -34,7 +34,7 @@ ## fits the model ## ## @example -## logit (gamma_i (x)) = theta_i - beta' * x, i = 1...k-1 +## logit (gamma_i (x)) = theta_i - beta' * x, i = 1 @dots{} k-1 ## @end example ## ## The number of ordinal categories, @var{k}, is taken to be the number @@ -48,8 +48,10 @@ ## The full form is ## ## @example +## @group ## [theta, beta, dev, dl, d2l, gamma] ## = logistic_regression (y, x, print, theta, beta) +## @end group ## @end example ## ## @noindent