comparison liboctave/floatSCHUR.h @ 11586:12df7854fa7c

strip trailing whitespace from source files
author John W. Eaton <jwe@octave.org>
date Thu, 20 Jan 2011 17:24:59 -0500
parents fd0a3ac60b0e
children 72c96de7a403
comparison
equal deleted inserted replaced
11585:1473d0cf86d2 11586:12df7854fa7c
41 : schur_mat (), unitary_mat (), selector (0) 41 : schur_mat (), unitary_mat (), selector (0)
42 { 42 {
43 init (a, ord, calc_unitary); 43 init (a, ord, calc_unitary);
44 } 44 }
45 45
46 FloatSCHUR (const FloatMatrix& a, const std::string& ord, int& info, 46 FloatSCHUR (const FloatMatrix& a, const std::string& ord, int& info,
47 bool calc_unitary = true) 47 bool calc_unitary = true)
48 : schur_mat (), unitary_mat (), selector (0) 48 : schur_mat (), unitary_mat (), selector (0)
49 { 49 {
50 info = init (a, ord, calc_unitary); 50 info = init (a, ord, calc_unitary);
51 } 51 }