diff liboctave/CmplxSVD.h @ 5275:23b37da9fd5b

[project @ 2005-04-08 16:07:35 by jwe]
author jwe
date Fri, 08 Apr 2005 16:07:37 +0000
parents e35b034d3523
children 4c8a2e4e0717
line wrap: on
line diff
--- a/liboctave/CmplxSVD.h
+++ b/liboctave/CmplxSVD.h
@@ -41,7 +41,7 @@
       init (a, svd_type);
     }
 
-  ComplexSVD (const ComplexMatrix& a, int& info,
+  ComplexSVD (const ComplexMatrix& a, octave_idx_type& info,
 	      SVD::type svd_type = SVD::std)
     {
       info = init (a, svd_type);
@@ -81,7 +81,7 @@
   ComplexMatrix left_sm;
   ComplexMatrix right_sm;
 
-  int init (const ComplexMatrix& a, SVD::type svd_type = SVD::std);
+  octave_idx_type init (const ComplexMatrix& a, SVD::type svd_type = SVD::std);
 };
 
 #endif