diff main/fixed/src/fixedCMatrix.h @ 5655:0924c374b60d octave-forge

Update fixed point code for 3.1.x. Minor bug in test code still present though code seems to work fine
author adb014
date Mon, 18 May 2009 03:18:11 +0000
parents f8d77845533f
children d84d2fea3c90
line wrap: on
line diff
--- a/main/fixed/src/fixedCMatrix.h	Sun May 17 20:06:45 2009 +0000
+++ b/main/fixed/src/fixedCMatrix.h	Mon May 18 03:18:11 2009 +0000
@@ -57,6 +57,8 @@
 
   FixedComplexMatrix (void) : MArray2<FixedPointComplex> () { }
 
+  FixedComplexMatrix (const dim_vector& dv) : MArray2<FixedPointComplex> (dv) { }
+
   FixedComplexMatrix (int r, int c) : MArray2<FixedPointComplex> (r, c) { }
 
   FixedComplexMatrix (int r, int c, const FixedPointComplex val) :