comparison src/ov-cx-mat.h @ 3928:e8627dc4bdf2

[project @ 2002-05-03 19:56:01 by jwe]
author jwe
date Fri, 03 May 2002 19:56:02 +0000
parents b11f9c33558f
children f9ea3dcf58ee
comparison
equal deleted inserted replaced
3927:e7ad1397d67b 3928:e8627dc4bdf2
75 75
76 octave_value *clone (void) { return new octave_complex_matrix (*this); } 76 octave_value *clone (void) { return new octave_complex_matrix (*this); }
77 77
78 octave_value *try_narrowing_conversion (void); 78 octave_value *try_narrowing_conversion (void);
79 79
80 void assign (const octave_value_list& idx, const ComplexMatrix& rhs); 80 void assign (const octave_value_list& idx, const ComplexMatrix& rhs)
81 { octave_base_matrix<ComplexMatrix>::assign (idx, rhs); }
81 82
82 void assign (const octave_value_list& idx, const Matrix& rhs); 83 void assign (const octave_value_list& idx, const Matrix& rhs);
83 84
84 bool is_complex_matrix (void) const { return true; } 85 bool is_complex_matrix (void) const { return true; }
85 86