Mercurial > hg > octave-max
comparison src/ov-cx-mat.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-base-mat.h" | 39 #include "ov-base-mat.h" |
40 #include "ov-typeinfo.h" | 40 #include "ov-typeinfo.h" |
41 | 41 |
42 #include "MatrixType.h" | |
43 | |
42 class Octave_map; | 44 class Octave_map; |
43 class octave_value_list; | 45 class octave_value_list; |
44 | 46 |
45 class tree_walker; | 47 class tree_walker; |
46 | 48 |
57 octave_complex_matrix (const ComplexNDArray& m) | 59 octave_complex_matrix (const ComplexNDArray& m) |
58 : octave_base_matrix<ComplexNDArray> (m) { } | 60 : octave_base_matrix<ComplexNDArray> (m) { } |
59 | 61 |
60 octave_complex_matrix (const ComplexMatrix& m) | 62 octave_complex_matrix (const ComplexMatrix& m) |
61 : octave_base_matrix<ComplexNDArray> (m) { } | 63 : octave_base_matrix<ComplexNDArray> (m) { } |
64 | |
65 octave_complex_matrix (const ComplexMatrix& m, const MatrixType& t) | |
66 : octave_base_matrix<ComplexNDArray> (m, t) { } | |
62 | 67 |
63 octave_complex_matrix (const ArrayN<Complex>& m) | 68 octave_complex_matrix (const ArrayN<Complex>& m) |
64 : octave_base_matrix<ComplexNDArray> (ComplexNDArray (m)) { } | 69 : octave_base_matrix<ComplexNDArray> (ComplexNDArray (m)) { } |
65 | 70 |
66 octave_complex_matrix (const ComplexDiagMatrix& d) | 71 octave_complex_matrix (const ComplexDiagMatrix& d) |