diff liboctave/MatrixType.h @ 7789:82be108cc558

First attempt at single precision tyeps * * * corrections to qrupdate single precision routines * * * prefer demotion to single over promotion to double * * * Add single precision support to log2 function * * * Trivial PROJECT file update * * * Cache optimized hermitian/transpose methods * * * Add tests for tranpose/hermitian and ChangeLog entry for new transpose code
author David Bateman <dbateman@free.fr>
date Sun, 27 Apr 2008 22:34:17 +0200
parents a1dbe9d80eee
children 72c332d2db3c
line wrap: on
line diff
--- a/liboctave/MatrixType.h
+++ b/liboctave/MatrixType.h
@@ -26,6 +26,8 @@
 
 class Matrix;
 class ComplexMatrix;
+class FloatMatrix;
+class FloatComplexMatrix;
 class SparseMatrix;
 class SparseComplexMatrix;
 
@@ -59,6 +61,10 @@
 
   MatrixType (const ComplexMatrix &a);
 
+  MatrixType (const FloatMatrix &a);
+
+  MatrixType (const FloatComplexMatrix &a);
+
   MatrixType (const SparseMatrix &a);
 
   MatrixType (const SparseComplexMatrix &a);
@@ -81,6 +87,10 @@
 
   int type (const ComplexMatrix &a);
 
+  int type (const FloatMatrix &a);
+
+  int type (const FloatComplexMatrix &a);
+
   int type (const SparseMatrix &a);
 
   int type (const SparseComplexMatrix &a);