# HG changeset patch # User dbateman # Date 1158953933 0 # Node ID bd0507994409370b8b28117f3d21bfccd5941fcd # Parent 9223672bd578942cb81c7bcb5e33135a54f364c9 [project @ 2006-09-22 19:38:52 by dbateman] diff -r 9223672bd578 -r bd0507994409 liboctave/ChangeLog --- a/liboctave/ChangeLog Thu Sep 21 20:09:44 2006 +0000 +++ b/liboctave/ChangeLog Fri Sep 22 19:38:53 2006 +0000 @@ -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 -r 9223672bd578 -r bd0507994409 liboctave/MatrixType.cc --- a/liboctave/MatrixType.cc Thu Sep 21 20:09:44 2006 +0000 +++ b/liboctave/MatrixType.cc Fri Sep 22 19:38:53 2006 +0000 @@ -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 -r 9223672bd578 -r bd0507994409 scripts/ChangeLog --- a/scripts/ChangeLog Thu Sep 21 20:09:44 2006 +0000 +++ b/scripts/ChangeLog Fri Sep 22 19:38:53 2006 +0000 @@ -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 -r 9223672bd578 -r bd0507994409 scripts/deprecated/chisquare_pdf.m --- a/scripts/deprecated/chisquare_pdf.m Thu Sep 21 20:09:44 2006 +0000 +++ b/scripts/deprecated/chisquare_pdf.m Fri Sep 22 19:38:53 2006 +0000 @@ -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 -r 9223672bd578 -r bd0507994409 scripts/miscellaneous/parseparams.m --- a/scripts/miscellaneous/parseparams.m Thu Sep 21 20:09:44 2006 +0000 +++ b/scripts/miscellaneous/parseparams.m Fri Sep 22 19:38:53 2006 +0000 @@ -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 -r 9223672bd578 -r bd0507994409 scripts/signal/filter2.m --- a/scripts/signal/filter2.m Thu Sep 21 20:09:44 2006 +0000 +++ b/scripts/signal/filter2.m Fri Sep 22 19:38:53 2006 +0000 @@ -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