diff scripts/statistics/distributions/lognpdf.m @ 18444:8858d0ccfc93 stable

doc: Document that default mu is 0 for logn* statistical functions (bug #41547). * logncdf.m, logninv.m, lognpdf.m: Document that default mu is 0 (bug #41547).
author Rik <rik@octave.org>
date Tue, 11 Feb 2014 14:31:25 -0800
parents d63878346099
children 4197fc428c7d
line wrap: on
line diff
--- a/scripts/statistics/distributions/lognpdf.m	Mon Feb 10 09:41:59 2014 -0800
+++ b/scripts/statistics/distributions/lognpdf.m	Tue Feb 11 14:31:25 2014 -0800
@@ -23,10 +23,10 @@
 ## For each element of @var{x}, compute the probability density function
 ## (PDF) at @var{x} of the lognormal distribution with parameters
 ## @var{mu} and @var{sigma}.  If a random variable follows this distribution,
-## its logarithm is normally distributed with mean @var{mu}
-## and standard deviation @var{sigma}.
+## its logarithm is normally distributed with mean @var{mu} and standard
+## deviation @var{sigma}.
 ##
-## Default values are @var{mu} = 1, @var{sigma} = 1.
+## Default values are @var{mu} = 0, @var{sigma} = 1.
 ## @end deftypefn
 
 ## Author: KH <Kurt.Hornik@wu-wien.ac.at>