Mercurial > hg > octave-nkf
diff liboctave/CmplxSCHUR.h @ 10822:23d2378512a0
implement rsf2csf
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Tue, 27 Jul 2010 11:26:43 +0200 |
parents | cbc402e64d83 |
children | 367bfee35ba0 |
line wrap: on
line diff
--- a/liboctave/CmplxSCHUR.h +++ b/liboctave/CmplxSCHUR.h @@ -28,6 +28,7 @@ #include <string> #include "CMatrix.h" +#include "dbleSCHUR.h" class OCTAVE_API @@ -49,6 +50,10 @@ ComplexSCHUR (const ComplexSCHUR& a) : schur_mat (a.schur_mat), unitary_mat (a.unitary_mat) { } + ComplexSCHUR (const ComplexMatrix& s, const ComplexMatrix& u); + + ComplexSCHUR (const SCHUR& s); + ComplexSCHUR& operator = (const ComplexSCHUR& a) { if (this != &a)