changeset 11909:759e54fb0eed release-3-0-x

Correct help string for statistics.m
author Francesco Potortì <pot@gnu.org>
date Mon, 12 Jan 2009 10:56:14 +0100
parents b12aa8aef1c0
children 9d46d257f6ef
files scripts/ChangeLog scripts/statistics/base/statistics.m
diffstat 2 files changed, 3 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/scripts/ChangeLog	Mon Jan 12 10:56:09 2009 +0100
+++ b/scripts/ChangeLog	Mon Jan 12 10:56:14 2009 +0100
@@ -1,5 +1,7 @@
 2008-12-26  Francesco Potortì  <pot@gnu.org>
 
+	* statistics/base/statistics.m: Correct help string.
+
 	* plot/hist.m: Doc string now mentions matrix input argument.
 	Correct error message.
 
--- a/scripts/statistics/base/statistics.m	Mon Jan 12 10:56:09 2009 +0100
+++ b/scripts/statistics/base/statistics.m	Mon Jan 12 10:56:14 2009 +0100
@@ -21,7 +21,7 @@
 ## @deftypefn {Function File} {} statistics (@var{x})
 ## If @var{x} is a matrix, return a matrix with the minimum, first
 ## quartile, median, third quartile, maximum, mean, standard deviation,
-## skewness and kurtosis of the columns of @var{x} as its rows.
+## skewness and kurtosis of the columns of @var{x} as its columns.
 ##
 ## If @var{x} is a vector, calculate the statistics along the 
 ## non-singleton dimension.
@@ -72,4 +72,3 @@
 %! s = statistics (x);
 %! m = median (x);
 %! assert (m, s(3,:), eps);
-