changeset 5996:bd0507994409

[project @ 2006-09-22 19:38:52 by dbateman]
author dbateman
date Fri, 22 Sep 2006 19:38:53 +0000
parents 9223672bd578
children 49dfdb54bb2b
files liboctave/ChangeLog liboctave/MatrixType.cc scripts/ChangeLog scripts/deprecated/chisquare_pdf.m scripts/miscellaneous/parseparams.m scripts/signal/filter2.m
diffstat 6 files changed, 29 insertions(+), 10 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/ChangeLog
+++ b/liboctave/ChangeLog
@@ -1,3 +1,8 @@
+2006-09-22  David Bateman <dbateman@free.fr>
+
+	* MatrixType.h (MatrixType::MatrixType(const SparseComplexMatrix&)): 
+	Remove spurious warning.
+
 2006-09-15  John W. Eaton  <jwe@octave.org>
 
 	* Array.cc (Array<T>::index (Array<idx_vector>&, int, const T&) const): 
--- 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");
 
--- a/scripts/ChangeLog
+++ b/scripts/ChangeLog
@@ -1,3 +1,15 @@
+2006-09-22  Michael Creel <michael.creel@uab.es>
+
+	* deprecated/chisquare_pdf.m: Typo in documentation.
+
+2006-09-22  Søren Hauberg  <soren@hauberg.org>
+
+	* signal/filter2.m: Correct texinfo doc.
+
+2006-09-22  David Bateman <dbateman@free.fr>
+
+	* miscellaneous/parseparams.m: Correct texinfo doc.
+	
 2006-09-15  David Bateman <dbateman@free.fr>
 
 	* pkg/pkg.m (prepare_installation): Don't create package
--- 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
 
--- 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}
--- 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 <pkienzle@users.sf.net>
 ## 2001-02-08