Mercurial > hg > octave-nkf
comparison src/ov-re-sparse.h @ 5785:6b9cec830d72
[project @ 2006-05-03 19:32:46 by dbateman]
author | dbateman |
---|---|
date | Wed, 03 May 2006 19:32:48 +0000 |
parents | ce79d238f142 |
children | b9c45e0cf685 |
comparison
equal
deleted
inserted
replaced
5784:70f7659d0fb9 | 5785:6b9cec830d72 |
---|---|
37 #include "oct-stream.h" | 37 #include "oct-stream.h" |
38 #include "ov-base.h" | 38 #include "ov-base.h" |
39 #include "ov-typeinfo.h" | 39 #include "ov-typeinfo.h" |
40 | 40 |
41 #include "dSparse.h" | 41 #include "dSparse.h" |
42 #include "SparseType.h" | 42 #include "MatrixType.h" |
43 #include "ov-base-sparse.h" | 43 #include "ov-base-sparse.h" |
44 #include "ov-bool-sparse.h" | 44 #include "ov-bool-sparse.h" |
45 #include "ov-cx-sparse.h" | 45 #include "ov-cx-sparse.h" |
46 | 46 |
47 class Octave_map; | 47 class Octave_map; |
64 : octave_base_sparse<SparseMatrix> (SparseMatrix (m)) { } | 64 : octave_base_sparse<SparseMatrix> (SparseMatrix (m)) { } |
65 | 65 |
66 octave_sparse_matrix (const SparseMatrix& m) | 66 octave_sparse_matrix (const SparseMatrix& m) |
67 : octave_base_sparse<SparseMatrix> (m) { } | 67 : octave_base_sparse<SparseMatrix> (m) { } |
68 | 68 |
69 octave_sparse_matrix (const SparseMatrix& m, const SparseType& t) | 69 octave_sparse_matrix (const SparseMatrix& m, const MatrixType& t) |
70 : octave_base_sparse<SparseMatrix> (m, t) { } | 70 : octave_base_sparse<SparseMatrix> (m, t) { } |
71 | 71 |
72 octave_sparse_matrix (const MSparse<double>& m) | 72 octave_sparse_matrix (const MSparse<double>& m) |
73 : octave_base_sparse<SparseMatrix> (m) { } | 73 : octave_base_sparse<SparseMatrix> (m) { } |
74 | 74 |