comparison liboctave/CMatrix.h @ 10301:9e0ec19df4bc

commit accidentally omitted parts of previous change
author John W. Eaton <jwe@octave.org>
date Wed, 10 Feb 2010 13:57:23 -0500
parents 4c0cdbe0acca
children cbc402e64d83
comparison
equal deleted inserted replaced
10300:dcc2535009c7 10301:9e0ec19df4bc
61 template <class U> 61 template <class U>
62 ComplexMatrix (const MArray2<U>& a) : MArray2<Complex> (a) { } 62 ComplexMatrix (const MArray2<U>& a) : MArray2<Complex> (a) { }
63 63
64 template <class U> 64 template <class U>
65 ComplexMatrix (const Array2<U>& a) : MArray2<Complex> (a) { } 65 ComplexMatrix (const Array2<U>& a) : MArray2<Complex> (a) { }
66
67 template <class U>
68 ComplexMatrix (const Array<U>& a) : MArray2<Complex> (a) { }
66 69
67 ComplexMatrix (const Matrix& re, const Matrix& im); 70 ComplexMatrix (const Matrix& re, const Matrix& im);
68 71
69 explicit ComplexMatrix (const Matrix& a); 72 explicit ComplexMatrix (const Matrix& a);
70 73