# HG changeset patch # User Francesco Potortì # Date 1230327548 -3600 # Node ID 24e4dc8b0e3a3483299ef67ef3d78adf9a56fecb # Parent f34ab2b433e868fae9f08df7799877cb7fad8167 Correct help string for statistics.m diff -r f34ab2b433e8 -r 24e4dc8b0e3a scripts/ChangeLog --- a/scripts/ChangeLog Fri Dec 26 22:28:45 2008 +0100 +++ b/scripts/ChangeLog Fri Dec 26 22:39:08 2008 +0100 @@ -1,5 +1,7 @@ 2008-12-26 Francesco Potortì + * statistics/base/statistics.m: Correct help string. + * plot/hist.m: Doc string now mentions matrix input argument. Correct error message. diff -r f34ab2b433e8 -r 24e4dc8b0e3a scripts/statistics/base/statistics.m --- a/scripts/statistics/base/statistics.m Fri Dec 26 22:28:45 2008 +0100 +++ b/scripts/statistics/base/statistics.m Fri Dec 26 22:39:08 2008 +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); -