Mercurial > hg > octave-nkf
comparison liboctave/CSparse.h @ 10480:19e1e4470e01
remove old sparse assembly ctors
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Wed, 31 Mar 2010 10:24:57 +0200 |
parents | ded9beac7582 |
children | b4d2080b6df7 |
comparison
equal
deleted
inserted
replaced
10479:ded9beac7582 | 10480:19e1e4470e01 |
---|---|
75 explicit SparseComplexMatrix (const ComplexMatrix& a) | 75 explicit SparseComplexMatrix (const ComplexMatrix& a) |
76 : MSparse<Complex> (a) { } | 76 : MSparse<Complex> (a) { } |
77 | 77 |
78 explicit SparseComplexMatrix (const ComplexNDArray& a) | 78 explicit SparseComplexMatrix (const ComplexNDArray& a) |
79 : MSparse<Complex> (a) { } | 79 : MSparse<Complex> (a) { } |
80 | |
81 explicit SparseComplexMatrix (const Array<Complex> a, const Array<octave_idx_type>& r, | |
82 const Array<octave_idx_type>& c, octave_idx_type nr = -1, | |
83 octave_idx_type nc = -1, bool sum_terms = true) | |
84 : MSparse<Complex> (a, r, c, nr, nc, sum_terms) { } | |
85 | |
86 explicit SparseComplexMatrix (const Array<Complex> a, | |
87 const Array<double>& r, | |
88 const Array<double>& c, octave_idx_type nr = -1, | |
89 octave_idx_type nc = -1, bool sum_terms = true) | |
90 : MSparse<Complex> (a, r, c, nr, nc, sum_terms) { } | |
91 | 80 |
92 SparseComplexMatrix (const Array<Complex>& a, const idx_vector& r, | 81 SparseComplexMatrix (const Array<Complex>& a, const idx_vector& r, |
93 const idx_vector& c, octave_idx_type nr = -1, | 82 const idx_vector& c, octave_idx_type nr = -1, |
94 octave_idx_type nc = -1, bool sum_terms = true) | 83 octave_idx_type nc = -1, bool sum_terms = true) |
95 : MSparse<Complex> (a, r, c, nr, nc, sum_terms) { } | 84 : MSparse<Complex> (a, r, c, nr, nc, sum_terms) { } |