[gnumeric] add note and seealso to desc of snorm.dist.range



commit 0a949dbaae5b43cf034a31a9a2e7c9ed55075d45
Author: Andreas J Guelzow <aguelzow pyrshep ca>
Date:   Wed May 29 11:54:30 2013 -0600

    add note and seealso to desc of snorm.dist.range
    
    2013-05-29  Andreas J. Guelzow <aguelzow pyrshep ca>
    
        * functions.c (help_snorm_dist_range): add note and seealso.

 plugins/fn-stat/ChangeLog   |    4 ++++
 plugins/fn-stat/functions.c |    8 +++++---
 2 files changed, 9 insertions(+), 3 deletions(-)
---
diff --git a/plugins/fn-stat/ChangeLog b/plugins/fn-stat/ChangeLog
index ab31be1..5224805 100644
--- a/plugins/fn-stat/ChangeLog
+++ b/plugins/fn-stat/ChangeLog
@@ -1,3 +1,7 @@
+2013-05-29  Andreas J. Guelzow <aguelzow pyrshep ca>
+
+       * functions.c (help_snorm_dist_range): add note and seealso.
+
 2013-05-19  Morten Welinder  <terra gnome org>
 
        * functions.c: Mark examples for translation when appropriate.
diff --git a/plugins/fn-stat/functions.c b/plugins/fn-stat/functions.c
index dbbc9e3..aee5df9 100644
--- a/plugins/fn-stat/functions.c
+++ b/plugins/fn-stat/functions.c
@@ -458,9 +458,11 @@ gnumeric_normsdist (GnmFuncEvalInfo *ei, GnmValue const * const *argv)
 
 static GnmFuncHelp const help_snorm_dist_range[] = {
        { GNM_FUNC_HELP_NAME, F_("SNORM.DIST.RANGE:probability of the standard normal distribution over an 
interval") },
-       { GNM_FUNC_HELP_ARG, F_("x1:first observation") },
-       { GNM_FUNC_HELP_ARG, F_("x2:first observation") },
-       { GNM_FUNC_HELP_DESCRIPTION, F_("This function returns the cumulative probability over a range of the 
standard normal distribution.") },
+       { GNM_FUNC_HELP_ARG, F_("x1:start of the interval") },
+       { GNM_FUNC_HELP_ARG, F_("x2:end of the interval") },
+       { GNM_FUNC_HELP_DESCRIPTION, F_("This function returns the cumulative probability over a range of the 
standard normal distribution; that is the integral over the probability density function from @{x1} to 
@{x2}.") },
+       { GNM_FUNC_HELP_NOTE, F_("If @{x1}>@{x2}, this function returns a negative value.")},
+       { GNM_FUNC_HELP_SEEALSO, "NORMSDIST,R.PNORM,R.QNORM,R.DNORM"},
        { GNM_FUNC_HELP_END }
 };
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]