# HG changeset patch # User Jaroslav Hajek # Date 1205946749 14400 # Node ID b537a643a7cfac3c720085d1ab282a44d44dc976 # Parent a255ceb8e416a859d7e2bd545d34e59cbac634c4 doc fix for exp distribution functions diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,10 @@ +2008-03-19 Jaroslav Hajek + + * statistics/distributions/exppdf.m, + statistics/distributions/expcdf.m, + statistics/distributions/expinv.m, + statistics/distributions/exprnd.m: Doc fix. + 2008-03-18 Michael D. Godfrey * plot/__go_draw_axes__.m: Use correct symbol codes. diff --git a/scripts/statistics/distributions/expcdf.m b/scripts/statistics/distributions/expcdf.m --- a/scripts/statistics/distributions/expcdf.m +++ b/scripts/statistics/distributions/expcdf.m @@ -20,7 +20,7 @@ ## @deftypefn {Function File} {} expcdf (@var{x}, @var{lambda}) ## For each element of @var{x}, compute the cumulative distribution ## function (CDF) at @var{x} of the exponential distribution with -## parameter @var{lambda}. +## mean @var{lambda}. ## ## The arguments can be of common size or scalar. ## @end deftypefn diff --git a/scripts/statistics/distributions/expinv.m b/scripts/statistics/distributions/expinv.m --- a/scripts/statistics/distributions/expinv.m +++ b/scripts/statistics/distributions/expinv.m @@ -19,7 +19,7 @@ ## -*- texinfo -*- ## @deftypefn {Function File} {} expinv (@var{x}, @var{lambda}) ## For each element of @var{x}, compute the quantile (the inverse of the -## CDF) at @var{x} of the exponential distribution with parameter +## CDF) at @var{x} of the exponential distribution with mean ## @var{lambda}. ## @end deftypefn diff --git a/scripts/statistics/distributions/exppdf.m b/scripts/statistics/distributions/exppdf.m --- a/scripts/statistics/distributions/exppdf.m +++ b/scripts/statistics/distributions/exppdf.m @@ -19,7 +19,7 @@ ## -*- texinfo -*- ## @deftypefn {Function File} {} exppdf (@var{x}, @var{lambda}) ## For each element of @var{x}, compute the probability density function -## (PDF) of the exponential distribution with parameter @var{lambda}. +## (PDF) of the exponential distribution with mean @var{lambda}. ## @end deftypefn ## Author: KH diff --git a/scripts/statistics/distributions/exprnd.m b/scripts/statistics/distributions/exprnd.m --- a/scripts/statistics/distributions/exprnd.m +++ b/scripts/statistics/distributions/exprnd.m @@ -20,7 +20,7 @@ ## @deftypefn {Function File} {} exprnd (@var{lambda}, @var{r}, @var{c}) ## @deftypefnx {Function File} {} exprnd (@var{lambda}, @var{sz}) ## Return an @var{r} by @var{c} matrix of random samples from the -## exponential distribution with parameter @var{lambda}, which must be a +## exponential distribution with mean @var{lambda}, which must be a ## scalar or of size @var{r} by @var{c}. Or if @var{sz} is a vector, ## create a matrix of size @var{sz}. ##