comparison liboctave/fCmplxQR.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 41
42 FloatComplexQR (void) : base_qr<FloatComplexMatrix> () { } 42 FloatComplexQR (void) : base_qr<FloatComplexMatrix> () { }
43 43
44 FloatComplexQR (const FloatComplexMatrix&, qr_type_t = qr_type_std); 44 FloatComplexQR (const FloatComplexMatrix&, qr_type_t = qr_type_std);
45 45
46 FloatComplexQR (const FloatComplexMatrix& qx, const FloatComplexMatrix& rx) 46 FloatComplexQR (const FloatComplexMatrix& qx, const FloatComplexMatrix& rx)
47 : base_qr<FloatComplexMatrix> (qx, rx) { } 47 : base_qr<FloatComplexMatrix> (qx, rx) { }
48 48
49 FloatComplexQR (const FloatComplexQR& a) : base_qr<FloatComplexMatrix> (a) { } 49 FloatComplexQR (const FloatComplexQR& a) : base_qr<FloatComplexMatrix> (a) { }
50 50
51 void init (const FloatComplexMatrix&, qr_type_t = qr_type_std); 51 void init (const FloatComplexMatrix&, qr_type_t = qr_type_std);
68 68
69 void shift_cols (octave_idx_type i, octave_idx_type j); 69 void shift_cols (octave_idx_type i, octave_idx_type j);
70 70
71 protected: 71 protected:
72 72
73 void form (octave_idx_type n, FloatComplexMatrix& afact, 73 void form (octave_idx_type n, FloatComplexMatrix& afact,
74 FloatComplex *tau, qr_type_t qr_type); 74 FloatComplex *tau, qr_type_t qr_type);
75 }; 75 };
76 76
77 #endif 77 #endif