comparison liboctave/floatSCHUR.cc @ 11498:367bfee35ba0

data member initialization fixes
author John W. Eaton <jwe@octave.org>
date Thu, 13 Jan 2011 02:37:45 -0500
parents 8a5e980da6aa
children fd0a3ac60b0e
comparison
equal deleted inserted replaced
11497:7bddd70bc838 11498:367bfee35ba0
147 147
148 return info; 148 return info;
149 } 149 }
150 150
151 FloatSCHUR::FloatSCHUR (const FloatMatrix& s, const FloatMatrix& u) 151 FloatSCHUR::FloatSCHUR (const FloatMatrix& s, const FloatMatrix& u)
152 : schur_mat (s), unitary_mat (u) 152 : schur_mat (s), unitary_mat (u), selector (0)
153 { 153 {
154 octave_idx_type n = s.rows (); 154 octave_idx_type n = s.rows ();
155 if (s.columns () != n || u.rows () != n || u.columns () != n) 155 if (s.columns () != n || u.rows () != n || u.columns () != n)
156 (*current_liboctave_error_handler) 156 (*current_liboctave_error_handler)
157 ("schur: inconsistent matrix dimensions"); 157 ("schur: inconsistent matrix dimensions");