diff liboctave/floatSVD.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
line wrap: on
line diff
--- a/liboctave/floatSVD.h
+++ b/liboctave/floatSVD.h
@@ -37,16 +37,16 @@
 
   FloatSVD (void) : type_computed (), sigma (), left_sm (), right_sm () { }
 
-  FloatSVD (const FloatMatrix& a, 
-            SVD::type svd_type = SVD::std, SVD::driver svd_driver = SVD::GESVD) 
+  FloatSVD (const FloatMatrix& a,
+            SVD::type svd_type = SVD::std, SVD::driver svd_driver = SVD::GESVD)
     : type_computed (), sigma (), left_sm (), right_sm ()
     {
       init (a, svd_type, svd_driver);
     }
 
-  FloatSVD (const FloatMatrix& a, octave_idx_type& info, 
+  FloatSVD (const FloatMatrix& a, octave_idx_type& info,
             SVD::type svd_type = SVD::std,
-            SVD::driver svd_driver = SVD::GESVD) 
+            SVD::driver svd_driver = SVD::GESVD)
     : type_computed (), sigma (), left_sm (), right_sm ()
     {
       info = init (a, svd_type, svd_driver);
@@ -88,8 +88,8 @@
   FloatMatrix left_sm;
   FloatMatrix right_sm;
 
-  octave_idx_type init (const FloatMatrix& a, 
-                        SVD::type svd_type = SVD::std, 
+  octave_idx_type init (const FloatMatrix& a,
+                        SVD::type svd_type = SVD::std,
                         SVD::driver svd_driver = SVD::GESVD);
 };