comparison liboctave/floatSVD.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 3ce0c530a9c9
comparison
equal deleted inserted replaced
10311:a217e1d74353 10312:cbc402e64d83
50 sigma (a.sigma), left_sm (a.left_sm), right_sm (a.right_sm) { } 50 sigma (a.sigma), left_sm (a.left_sm), right_sm (a.right_sm) { }
51 51
52 FloatSVD& operator = (const FloatSVD& a) 52 FloatSVD& operator = (const FloatSVD& a)
53 { 53 {
54 if (this != &a) 54 if (this != &a)
55 { 55 {
56 type_computed = a.type_computed; 56 type_computed = a.type_computed;
57 sigma = a.sigma; 57 sigma = a.sigma;
58 left_sm = a.left_sm; 58 left_sm = a.left_sm;
59 right_sm = a.right_sm; 59 right_sm = a.right_sm;
60 } 60 }
61 61
62 return *this; 62 return *this;
63 } 63 }
64 64
65 ~FloatSVD (void) { } 65 ~FloatSVD (void) { }