diff liboctave/CMatrix.h @ 1819:8b8498bf8ec5

[project @ 1996-01-31 11:29:17 by jwe]
author jwe
date Wed, 31 Jan 1996 11:31:00 +0000
parents 5a8ad3d12304
children 1281a23a34dd
line wrap: on
line diff
--- a/liboctave/CMatrix.h
+++ b/liboctave/CMatrix.h
@@ -161,6 +161,8 @@
   ComplexColumnVector lssolve (const ComplexColumnVector& b, int& info,
 			       int& rank) const;
 
+  ComplexMatrix expm (void) const;
+
   // column vector by row vector -> matrix operations
 
   friend ComplexMatrix operator * (const ColumnVector& a,
@@ -348,6 +350,11 @@
   ComplexMatrix (Complex *d, int r, int c) : MArray2<Complex> (d, r, c) { }
 };
 
+ComplexMatrix Givens (const Complex&, const Complex&);
+
+ComplexMatrix Sylvester (const ComplexMatrix&, const ComplexMatrix&,
+			 const ComplexMatrix&);
+
 #endif
 
 /*