comparison liboctave/CmplxSCHUR.h @ 10312:cbc402e64d83

untabify liboctave header files
author John W. Eaton <jwe@octave.org>
date Thu, 11 Feb 2010 12:14:48 -0500
parents 4c0cdbe0acca
children 23d2378512a0
comparison
equal deleted inserted replaced
10311:a217e1d74353 10312:cbc402e64d83
37 37
38 ComplexSCHUR (void) 38 ComplexSCHUR (void)
39 : schur_mat (), unitary_mat () { } 39 : schur_mat (), unitary_mat () { }
40 40
41 ComplexSCHUR (const ComplexMatrix& a, const std::string& ord, 41 ComplexSCHUR (const ComplexMatrix& a, const std::string& ord,
42 bool calc_unitary = true) 42 bool calc_unitary = true)
43 : schur_mat (), unitary_mat () { init (a, ord, calc_unitary); } 43 : schur_mat (), unitary_mat () { init (a, ord, calc_unitary); }
44 44
45 ComplexSCHUR (const ComplexMatrix& a, const std::string& ord, octave_idx_type& info, 45 ComplexSCHUR (const ComplexMatrix& a, const std::string& ord, octave_idx_type& info,
46 bool calc_unitary = true) 46 bool calc_unitary = true)
47 : schur_mat (), unitary_mat () { info = init (a, ord, calc_unitary); } 47 : schur_mat (), unitary_mat () { info = init (a, ord, calc_unitary); }
48 48
49 ComplexSCHUR (const ComplexSCHUR& a) 49 ComplexSCHUR (const ComplexSCHUR& a)
50 : schur_mat (a.schur_mat), unitary_mat (a.unitary_mat) { } 50 : schur_mat (a.schur_mat), unitary_mat (a.unitary_mat) { }
51 51
52 ComplexSCHUR& operator = (const ComplexSCHUR& a) 52 ComplexSCHUR& operator = (const ComplexSCHUR& a)
53 { 53 {
54 if (this != &a) 54 if (this != &a)
55 { 55 {
56 schur_mat = a.schur_mat; 56 schur_mat = a.schur_mat;
57 unitary_mat = a.unitary_mat; 57 unitary_mat = a.unitary_mat;
58 } 58 }
59 return *this; 59 return *this;
60 } 60 }
61 61
62 ~ComplexSCHUR (void) { } 62 ~ComplexSCHUR (void) { }
63 63