[gnumeric] PERCENTRANK: Doc fixes.
- From: Morten Welinder <mortenw src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnumeric] PERCENTRANK: Doc fixes.
- Date: Sat, 30 Jan 2016 18:07:49 +0000 (UTC)
commit 4c9eacf97b30b011f13c1057984cf5b4581c0cd2
Author: Morten Welinder <terra gnome org>
Date: Sat Jan 30 13:07:25 2016 -0500
PERCENTRANK: Doc fixes.
doc/C/func.defs | 4 ++--
doc/C/functions.xml | 4 ++--
plugins/fn-stat/functions.c | 4 ++--
3 files changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/doc/C/func.defs b/doc/C/func.defs
index 18d6b88..c081344 100644
--- a/doc/C/func.defs
+++ b/doc/C/func.defs
@@ -5160,7 +5160,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
@ARGUMENTDESCRIPTION= {array}: range of numeric values
@{x}: data point to be ranked
@{significance}: number of significant digits, defaults to 3
- NOTE=If @{array} contains no data points, this function returns a #NUM! error. If @{significance} is less
than one, this function returns a #NUM! error. If @{x} exceeds the largest value or is less than the smallest
value in @{array}, this function returns a #NUM! error. If @{x} does not match any of the values in @{array}
or @{x} matches more than once, this function interpolates the returned value.
+ NOTE=If @{array} contains no data points, this function returns a #NUM! error. If @{significance} is less
than one, this function returns a #NUM! error. If @{x} exceeds the largest value or is less than the smallest
value in @{array}, this function returns an #N/A! error. If @{x} does not match any of the values in @{array}
or @{x} matches more than once, this function interpolates the returned value.
@SEEALSO=LARGE,MAX,MEDIAN,MIN,PERCENTILE,QUARTILE,SMALL
@CATEGORY=Statistics
@@ -5170,7 +5170,7 @@ If the data set does not contain any duplicates this function returns a #N/A err
@ARGUMENTDESCRIPTION= {array}: range of numeric values
@{x}: data point to be ranked
@{significance}: number of significant digits, defaults to 3
- NOTE=If @{array} contains no data points, this function returns a #NUM! error. If @{significance} is less
than one, this function returns a #NUM! error. If @{x} exceeds the largest value or is less than the smallest
value in @{array}, this function returns a #NUM! error. If @{x} does not match any of the values in @{array}
or @{x} matches more than once, this function interpolates the returned value.
+ NOTE=If @{array} contains no data points, this function returns a #NUM! error. If @{significance} is less
than one, this function returns a #NUM! error. If @{x} exceeds the largest value or is less than the smallest
value in @{array}, this function returns an #N/A! error. If @{x} does not match any of the values in @{array}
or @{x} matches more than once, this function interpolates the returned value.
@SEEALSO=LARGE,MAX,MEDIAN,MIN,PERCENTILE,PERCENTILE.EXC,QUARTILE,QUARTILE.EXC,SMALL
@CATEGORY=Statistics
diff --git a/doc/C/functions.xml b/doc/C/functions.xml
index 45263b2..03e84ed 100644
--- a/doc/C/functions.xml
+++ b/doc/C/functions.xml
@@ -17634,7 +17634,7 @@
</refsect1>
<refsect1>
<title>Note</title>
- <para>If <parameter>array</parameter> contains no data points, this function returns a #NUM! error.
If <parameter>significance</parameter> is less than one, this function returns a #NUM! error. If
<parameter>x</parameter> exceeds the largest value or is less than the smallest value in
<parameter>array</parameter>, this function returns a #NUM! error. If <parameter>x</parameter> does not match
any of the values in <parameter>array</parameter> or <parameter>x</parameter> matches more than once, this
function interpolates the returned value.</para>
+ <para>If <parameter>array</parameter> contains no data points, this function returns a #NUM! error.
If <parameter>significance</parameter> is less than one, this function returns a #NUM! error. If
<parameter>x</parameter> exceeds the largest value or is less than the smallest value in
<parameter>array</parameter>, this function returns an #N/A! error. If <parameter>x</parameter> does not
match any of the values in <parameter>array</parameter> or <parameter>x</parameter> matches more than once,
this function interpolates the returned value.</para>
</refsect1>
<refsect1>
<title>See also</title>
@@ -17673,7 +17673,7 @@
</refsect1>
<refsect1>
<title>Note</title>
- <para>If <parameter>array</parameter> contains no data points, this function returns a #NUM! error.
If <parameter>significance</parameter> is less than one, this function returns a #NUM! error. If
<parameter>x</parameter> exceeds the largest value or is less than the smallest value in
<parameter>array</parameter>, this function returns a #NUM! error. If <parameter>x</parameter> does not match
any of the values in <parameter>array</parameter> or <parameter>x</parameter> matches more than once, this
function interpolates the returned value.</para>
+ <para>If <parameter>array</parameter> contains no data points, this function returns a #NUM! error.
If <parameter>significance</parameter> is less than one, this function returns a #NUM! error. If
<parameter>x</parameter> exceeds the largest value or is less than the smallest value in
<parameter>array</parameter>, this function returns an #N/A! error. If <parameter>x</parameter> does not
match any of the values in <parameter>array</parameter> or <parameter>x</parameter> matches more than once,
this function interpolates the returned value.</para>
</refsect1>
<refsect1>
<title>See also</title>
diff --git a/plugins/fn-stat/functions.c b/plugins/fn-stat/functions.c
index 584f1a0..7adc815 100644
--- a/plugins/fn-stat/functions.c
+++ b/plugins/fn-stat/functions.c
@@ -2839,7 +2839,7 @@ static GnmFuncHelp const help_percentrank[] = {
{ GNM_FUNC_HELP_NOTE, F_("If @{significance} is less than one, this function returns a #NUM! "
"error.") },
{ GNM_FUNC_HELP_NOTE, F_("If @{x} exceeds the largest value or is less than the smallest "
- "value in @{array}, this function returns a #NUM! error.") },
+ "value in @{array}, this function returns an #N/A! error.") },
{ GNM_FUNC_HELP_NOTE, F_("If @{x} does not match any of the values in @{array} or @{x} matches "
"more than once, this function interpolates the returned value.") },
{ GNM_FUNC_HELP_SEEALSO, "LARGE,MAX,MEDIAN,MIN,PERCENTILE,QUARTILE,SMALL"},
@@ -2943,7 +2943,7 @@ static GnmFuncHelp const help_percentrank_exc[] = {
{ GNM_FUNC_HELP_NOTE, F_("If @{significance} is less than one, this function returns a #NUM! "
"error.") },
{ GNM_FUNC_HELP_NOTE, F_("If @{x} exceeds the largest value or is less than the smallest "
- "value in @{array}, this function returns a #NUM! error.") },
+ "value in @{array}, this function returns an #N/A! error.") },
{ GNM_FUNC_HELP_NOTE, F_("If @{x} does not match any of the values in @{array} or @{x} matches "
"more than once, this function interpolates the returned value.") },
{ GNM_FUNC_HELP_SEEALSO,
"LARGE,MAX,MEDIAN,MIN,PERCENTILE,PERCENTILE.EXC,QUARTILE,QUARTILE.EXC,SMALL"},
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]