comparison liboctave/dMatrix.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
58 template <class U> 58 template <class U>
59 Matrix (const MArray2<U>& a) : MArray2<double> (a) { } 59 Matrix (const MArray2<U>& a) : MArray2<double> (a) { }
60 60
61 template <class U> 61 template <class U>
62 Matrix (const Array2<U>& a) : MArray2<double> (a) { } 62 Matrix (const Array2<U>& a) : MArray2<double> (a) { }
63
64 template <class U>
65 Matrix (const Array<U>& a) : MArray2<double> (a) { }
63 66
64 explicit Matrix (const RowVector& rv); 67 explicit Matrix (const RowVector& rv);
65 68
66 explicit Matrix (const ColumnVector& cv); 69 explicit Matrix (const ColumnVector& cv);
67 70