changeset 5623:691de3e3c2f8

[project @ 2006-02-15 18:32:32 by jwe]
author jwe
date Wed, 15 Feb 2006 18:32:32 +0000
parents 8b7046423d1e
children 02c88fe23632
files scripts/ChangeLog scripts/statistics/distributions/gamcdf.m scripts/statistics/distributions/gaminv.m scripts/statistics/distributions/gampdf.m scripts/statistics/distributions/gamrnd.m src/ChangeLog src/help.cc
diffstat 7 files changed, 24 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Wed Feb 15 16:36:32 2006 +0000
+++ b/scripts/ChangeLog	Wed Feb 15 18:32:32 2006 +0000
@@ -1,3 +1,10 @@
+2006-02-15  Keith Goodman  <kwgoodman@gmail.com>
+ 
+ 	* statistics/distributions/gamcdf.m: Doc fix.
+ 	* statistics/distributions/gaminv.m: Doc fix.
+ 	* statistics/distributions/gampdf.m: Doc fix.
+ 	* statistics/distributions/gamrnd.m: Doc fix.
+
 2006-02-09  David Bateman  <dbateman@free.fr>
 
         * general/triu.m: Minimum change to allow sparse matrix. More needed
--- a/scripts/statistics/distributions/gamcdf.m	Wed Feb 15 16:36:32 2006 +0000
+++ b/scripts/statistics/distributions/gamcdf.m	Wed Feb 15 18:32:32 2006 +0000
@@ -23,6 +23,8 @@
 ## function (CDF) at @var{x} of the Gamma distribution with parameters
 ## @var{a} and @var{b}.
 ## @end deftypefn
+##
+## @seealso{gamma, gammaln, gammainc, gampdf, gaminv, gamrnd}
 
 ## Author: TT <Teresa.Twaroch@ci.tuwien.ac.at>
 ## Description: CDF of the Gamma distribution
--- a/scripts/statistics/distributions/gaminv.m	Wed Feb 15 16:36:32 2006 +0000
+++ b/scripts/statistics/distributions/gaminv.m	Wed Feb 15 18:32:32 2006 +0000
@@ -23,6 +23,8 @@
 ## the CDF) at @var{x} of the Gamma distribution with parameters @var{a}
 ## and @var{b}. 
 ## @end deftypefn
+##
+## @seealso{gamma, gammaln, gammainc, gampdf, gamcdf, gamrnd}
 
 ## Author: KH <Kurt.Hornik@wu-wien.ac.at>
 ## Description: Quantile function of the Gamma distribution
--- a/scripts/statistics/distributions/gampdf.m	Wed Feb 15 16:36:32 2006 +0000
+++ b/scripts/statistics/distributions/gampdf.m	Wed Feb 15 18:32:32 2006 +0000
@@ -23,6 +23,8 @@
 ## (PDF) at @var{x} of the Gamma distribution with parameters @var{a}
 ## and @var{b}.
 ## @end deftypefn
+##
+## @seealso{gamma, gammaln, gammainc, gamcdf, gaminv, gamrnd}
 
 ## Author: TT <Teresa.Twaroch@ci.tuwien.ac.at>
 ## Description: PDF of the Gamma distribution
--- a/scripts/statistics/distributions/gamrnd.m	Wed Feb 15 16:36:32 2006 +0000
+++ b/scripts/statistics/distributions/gamrnd.m	Wed Feb 15 18:32:32 2006 +0000
@@ -28,6 +28,8 @@
 ## If @var{r} and @var{c} are omitted, the size of the result matrix is
 ## the common size of @var{a} and @var{b}.
 ## @end deftypefn
+##
+## @seealso{gamma, gammaln, gammainc, gampdf, gamcdf, gaminv}
 
 ## Author: KH <Kurt.Hornik@wu-wien.ac.at>
 ## Description: Random deviates from the Gamma distribution
--- a/src/ChangeLog	Wed Feb 15 16:36:32 2006 +0000
+++ b/src/ChangeLog	Wed Feb 15 18:32:32 2006 +0000
@@ -1,3 +1,7 @@
+2006-02-15  Keith Goodman  <kwgoodman@gmail.com>
+
+	* help.cc (keywords): Doc string fix.
+
 2006-02-15  John W. Eaton  <jwe@octave.org>
 
 	* oct-procbuf.cc (close): Use __CYGWIN__ instead of __CYGWIN32__.
--- a/src/help.cc	Wed Feb 15 16:36:32 2006 +0000
+++ b/src/help.cc	Wed Feb 15 18:32:32 2006 +0000
@@ -300,7 +300,11 @@
     "The default statement in a switch block.", },
 
   { "persistent",
-    "Declare variables as persistent.", },
+    "Declare variables as persistent.  A variable that has been declared\n\
+persistent within a function will retain its contents in memory between\n\
+subsequent calls to the same function.  The difference between persistent\n\
+variables and global variables is that persistent variables are local in scope\n\
+to a particular function and are not visible elsewhere.", },
 
   { "replot",
     "Replot a graphic.", },