Mercurial > hg > octave-lyh
diff liboctave/CSparse.h @ 10527:b4d2080b6df7
Replace nzmax by nnz as needed
author | David Bateman <dbateman@free.fr> |
---|---|
date | Fri, 16 Apr 2010 16:14:45 +0200 |
parents | 19e1e4470e01 |
children | c2041adcf234 |
line wrap: on
line diff
--- a/liboctave/CSparse.h +++ b/liboctave/CSparse.h @@ -80,8 +80,9 @@ SparseComplexMatrix (const Array<Complex>& a, const idx_vector& r, const idx_vector& c, octave_idx_type nr = -1, - octave_idx_type nc = -1, bool sum_terms = true) - : MSparse<Complex> (a, r, c, nr, nc, sum_terms) { } + octave_idx_type nc = -1, bool sum_terms = true, + octave_idx_type nzm = -1) + : MSparse<Complex> (a, r, c, nr, nc, sum_terms, nzm) { } explicit SparseComplexMatrix (const SparseMatrix& a);