# HG changeset patch # User dbateman # Date 1158953933 0 # Node ID bd0507994409370b8b28117f3d21bfccd5941fcd # Parent 9223672bd578942cb81c7bcb5e33135a54f364c9 [project @ 2006-09-22 19:38:52 by dbateman] diff --git a/liboctave/ChangeLog b/liboctave/ChangeLog --- a/liboctave/ChangeLog +++ b/liboctave/ChangeLog @@ -1,3 +1,8 @@ +2006-09-22 David Bateman + + * MatrixType.h (MatrixType::MatrixType(const SparseComplexMatrix&)): + Remove spurious warning. + 2006-09-15 John W. Eaton * Array.cc (Array::index (Array&, int, const T&) const): diff --git a/liboctave/MatrixType.cc b/liboctave/MatrixType.cc --- a/liboctave/MatrixType.cc +++ b/liboctave/MatrixType.cc @@ -510,8 +510,7 @@ octave_idx_type nm = (ncols < nrows ? ncols : nrows); octave_idx_type nnz = a.nzmax (); - if (octave_sparse_params::get_key ("spumoni") != 0.) full = true; - + if (octave_sparse_params::get_key ("spumoni") != 0.) (*current_liboctave_warning_handler) ("Calculating Sparse Matrix Type"); diff --git a/scripts/ChangeLog b/scripts/ChangeLog --- a/scripts/ChangeLog +++ b/scripts/ChangeLog @@ -1,3 +1,15 @@ +2006-09-22 Michael Creel + + * deprecated/chisquare_pdf.m: Typo in documentation. + +2006-09-22 Søren Hauberg + + * signal/filter2.m: Correct texinfo doc. + +2006-09-22 David Bateman + + * miscellaneous/parseparams.m: Correct texinfo doc. + 2006-09-15 David Bateman * pkg/pkg.m (prepare_installation): Don't create package diff --git a/scripts/deprecated/chisquare_pdf.m b/scripts/deprecated/chisquare_pdf.m --- a/scripts/deprecated/chisquare_pdf.m +++ b/scripts/deprecated/chisquare_pdf.m @@ -20,7 +20,7 @@ ## -*- texinfo -*- ## @deftypefn {Function File} {} chisquare_pdf (@var{x}, @var{n}) ## For each element of @var{x}, compute the probability density function -## (PDF) at @var{x} of the chisquare distribution with @var{k} degrees +## (PDF) at @var{x} of the chisquare distribution with @var{n} degrees ## of freedom. ## @end deftypefn diff --git a/scripts/miscellaneous/parseparams.m b/scripts/miscellaneous/parseparams.m --- a/scripts/miscellaneous/parseparams.m +++ b/scripts/miscellaneous/parseparams.m @@ -18,26 +18,28 @@ ## 02110-1301, USA. ## -*- texinfo -*- -## @deftypefn {Function File} {} [@var{reg}, @var{prop}] = parseparams (@var{params}) +## @deftypefn {Function File} {[@var{reg}, @var{prop}] =} parseparams (@var{params}) ## Return in @var{reg} the cell elements of @var{param} up to the first ## string element and in @var{prop} all remaining elements beginning ## with the first string element. For example ## ## @example +## @group ## [reg, prop] = parseparams (@{1, 2, "linewidth", 10@}) ## reg = -## { +## @{ ## [1,1] = 1 ## [1,2] = 2 -## } +## @} ## prop = -## { +## @{ ## [1,1] = linewidth ## [1,2] = 10 -## } +## @} +## @end group ## @end example ## -## The parseparams function may be used to separate "regular" +## The parseparams function may be used to separate 'regular' ## arguments and additional arguments given as property/value pairs of ## the @var{varargin} cell array. ## @seealso{varargin} diff --git a/scripts/signal/filter2.m b/scripts/signal/filter2.m --- a/scripts/signal/filter2.m +++ b/scripts/signal/filter2.m @@ -17,6 +17,7 @@ ## Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA ## 02110-1301, USA. +## -*- texinfo -*- ## @deftypefn {Function File} {@var{y} =} filter2 (@var{b, @var{x}}) ## @deftypefnx {Function File} {@var{y} =} filter2 (@var{b, @var{x}}, @var{shape}) ## Apply the 2-D FIR filter @var{b} to @var{x}. If the argument @@ -35,7 +36,7 @@ ## Note this is just a variation on convolution, with the parameters ## reversed and @var{b} rotated 180 degrees. ## @seealso{conv2} -## @end{deftypefn} +## @end deftypefn ## Author: Paul Kienzle ## 2001-02-08