# HG changeset patch # User jwe # Date 1080940534 0 # Node ID 83ddfedb8db796ba9766a2323048e79b9372e5f9 # Parent 7a3eb3cc292b47c6f856915e0821c4c3404cae86 [project @ 2004-04-02 21:15:34 by jwe] diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,8 +1,9 @@ 2004-04-02 David Bateman * statistics/base/std.m: Allow optional args for type and dim. - * statistics/base/center.m statistics/base/meansq.m - statistics/base/moment.m statistics/base/range.m: Update for NDArrays. + * statistics/base/center.m, statistics/base/meansq.m, + statistics/base/moment.m, statistics/base/range.m: + Update for NDArrays. * signal/fftshift.m: Fix dimensioning error. * statistics/base/std.m: Use repmat not ones(nr,1)*mean to allow diff --git a/scripts/statistics/base/range.m b/scripts/statistics/base/range.m --- a/scripts/statistics/base/range.m +++ b/scripts/statistics/base/range.m @@ -19,21 +19,25 @@ ## -*- texinfo -*- ## @deftypefn {Function File} {} range (@var{x}) +## @deftypefn {Function File} {} range (@var{x},@var{dim}) ## If @var{x} is a vector, return the range, i.e., the difference ## between the maximum and the minimum, of the input data. ## ## If @var{x} is a matrix, do the above for each column of @var{x}. +## +## If the optional argument @var{dim} is supplied, work along dimension +## @var{dim}. ## @end deftypefn ## Author: KH ## Description: Compute range -function y = range (x) +function y = range (x, varargin{:}) - if (nargin != 1) - usage ("range (x)"); + if (nargin != 1 && nargin != 2) + usage ("range (x, dim)"); endif - y = max (x) - min (x); + y = max (x, varargin{:}) - min (x, varargin{:}); endfunction diff --git a/src/ChangeLog b/src/ChangeLog --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2004-04-02 John W. Eaton + * ov-bool.h (octave_bool::bool_array_value): New function. + * ov-base-mat.cc (octave_base_matrix::subsasgn): Don't allow expressions like x(i)(j) or x(i){j} when x is empty. diff --git a/src/ov-bool.h b/src/ov-bool.h --- a/src/ov-bool.h +++ b/src/ov-bool.h @@ -108,6 +108,9 @@ boolMatrix bool_matrix_value (void) const { return boolMatrix (1, 1, scalar); } + boolNDArray bool_array_value (void) const + { return boolNDArray (dim_vector (1, 1), scalar); } + octave_value convert_to_str_internal (bool pad, bool force) const; bool save_ascii (std::ostream& os, bool& infnan_warned,