# HG changeset patch # User Francesco Potortì # Date 1231754174 -3600 # Node ID 759e54fb0eed7e642a1ec1013cbb8bfd4839e227 # Parent b12aa8aef1c0fc78d1dcbd8d89c830c1c237e04e Correct help string for statistics.m diff -r b12aa8aef1c0 -r 759e54fb0eed scripts/ChangeLog --- 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ì + * statistics/base/statistics.m: Correct help string. + * plot/hist.m: Doc string now mentions matrix input argument. Correct error message. diff -r b12aa8aef1c0 -r 759e54fb0eed scripts/statistics/base/statistics.m --- 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); -