Mercurial > hg > octave-nkf
comparison src/ov-cx-sparse.h @ 5759:ce79d238f142
[project @ 2006-04-13 13:04:32 by jwe]
author | jwe |
---|---|
date | Thu, 13 Apr 2006 13:04:33 +0000 |
parents | 4c8a2e4e0717 |
children | 6b9cec830d72 |
comparison
equal
deleted
inserted
replaced
5758:65208d959bf1 | 5759:ce79d238f142 |
---|---|
75 octave_sparse_complex_matrix (const octave_sparse_complex_matrix& cm) | 75 octave_sparse_complex_matrix (const octave_sparse_complex_matrix& cm) |
76 : octave_base_sparse<SparseComplexMatrix> (cm) { } | 76 : octave_base_sparse<SparseComplexMatrix> (cm) { } |
77 | 77 |
78 ~octave_sparse_complex_matrix (void) { } | 78 ~octave_sparse_complex_matrix (void) { } |
79 | 79 |
80 octave_value *clone (void) const { return new octave_sparse_complex_matrix (*this); } | 80 octave_base_value *clone (void) const { return new octave_sparse_complex_matrix (*this); } |
81 octave_value *empty_clone (void) const { return new octave_sparse_complex_matrix (); } | 81 octave_base_value *empty_clone (void) const { return new octave_sparse_complex_matrix (); } |
82 | 82 |
83 octave_value *try_narrowing_conversion (void); | 83 octave_base_value *try_narrowing_conversion (void); |
84 | 84 |
85 void assign (const octave_value_list& idx, const SparseComplexMatrix& rhs); | 85 void assign (const octave_value_list& idx, const SparseComplexMatrix& rhs); |
86 | 86 |
87 void assign (const octave_value_list& idx, const SparseMatrix& rhs); | 87 void assign (const octave_value_list& idx, const SparseMatrix& rhs); |
88 | 88 |