Mercurial > hg > octave-nkf
diff liboctave/dMatrix.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/dMatrix.h +++ b/liboctave/dMatrix.h @@ -157,6 +157,8 @@ ComplexColumnVector lssolve (const ComplexColumnVector& b, int& info, int& rank) const; + Matrix expm (void) const; + Matrix& operator += (const Matrix& a); Matrix& operator -= (const Matrix& a); @@ -240,6 +242,10 @@ Matrix (double *d, int r, int c) : MArray2<double> (d, r, c) { } }; +Matrix Givens (double, double); + +Matrix Sylvester (const Matrix&, const Matrix&, const Matrix&); + #endif /*