comparison liboctave/CMatrix.h @ 1574:dd7d27461567

[project @ 1995-10-19 04:34:20 by jwe]
author jwe
date Thu, 19 Oct 1995 04:34:44 +0000
parents 90a897b8bbd3
children 23aa282707e8
comparison
equal deleted inserted replaced
1573:403c60daa8c7 1574:dd7d27461567
56 ComplexMatrix (const ComplexMatrix& a) : MArray2<Complex> (a) { } 56 ComplexMatrix (const ComplexMatrix& a) : MArray2<Complex> (a) { }
57 ComplexMatrix (const DiagMatrix& a); 57 ComplexMatrix (const DiagMatrix& a);
58 ComplexMatrix (const MDiagArray<Complex>& a) : MArray2<Complex> (a) { } 58 ComplexMatrix (const MDiagArray<Complex>& a) : MArray2<Complex> (a) { }
59 ComplexMatrix (const ComplexDiagMatrix& a); 59 ComplexMatrix (const ComplexDiagMatrix& a);
60 60
61 ComplexMatrix (const charMatrix& a);
62
61 ComplexMatrix& operator = (const ComplexMatrix& a) 63 ComplexMatrix& operator = (const ComplexMatrix& a)
62 { 64 {
63 MArray2<Complex>::operator = (a); 65 MArray2<Complex>::operator = (a);
64 return *this; 66 return *this;
65 } 67 }