Mercurial > hg > octave-lyh
annotate liboctave/mx-ext.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 | 64cf956a109c |
rev | line source |
---|---|
460 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1994, 1995, 1996, 1997, 1998, 2002, 2005, 2007 |
4 John W. Eaton | |
460 | 5 |
6 This file is part of Octave. | |
7 | |
8 Octave is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
7016 | 10 Free Software Foundation; either version 3 of the License, or (at your |
11 option) any later version. | |
460 | 12 |
13 Octave is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
7016 | 19 along with Octave; see the file COPYING. If not, see |
20 <http://www.gnu.org/licenses/>. | |
460 | 21 |
22 */ | |
23 | |
24 #if !defined (octave_mx_ext_h) | |
25 #define octave_mx_ext_h 1 | |
26 | |
687 | 27 // Result of a AEP Balance operation. |
460 | 28 |
29 #include "dbleAEPBAL.h" | |
30 #include "CmplxAEPBAL.h" | |
31 | |
687 | 32 // Result of a Determinant calculation. |
460 | 33 |
34 #include "dbleDET.h" | |
35 #include "CmplxDET.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
36 #include "floatDET.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
37 #include "fCmplxDET.h" |
460 | 38 |
687 | 39 // Result of a Cholesky Factorization |
460 | 40 |
41 #include "dbleCHOL.h" | |
42 #include "CmplxCHOL.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
43 #include "floatCHOL.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
44 #include "fCmplxCHOL.h" |
460 | 45 |
687 | 46 // Result of a Hessenberg Decomposition |
460 | 47 |
48 #include "dbleHESS.h" | |
49 #include "CmplxHESS.h" | |
50 | |
687 | 51 // Result of a Schur Decomposition |
460 | 52 |
53 #include "dbleSCHUR.h" | |
54 #include "CmplxSCHUR.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
55 #include "floatSCHUR.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
56 #include "fCmplxSCHUR.h" |
460 | 57 |
687 | 58 // Result of a Singular Value Decomposition. |
460 | 59 |
60 #include "dbleSVD.h" | |
61 #include "CmplxSVD.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
62 #include "floatSVD.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
63 #include "fCmplxSVD.h" |
460 | 64 |
687 | 65 // Result of an Eigenvalue computation. |
460 | 66 |
67 #include "EIG.h" | |
68 | |
687 | 69 // Result of an LU decomposition. |
460 | 70 |
71 #include "dbleLU.h" | |
72 #include "CmplxLU.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
73 #include "floatLU.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
74 #include "fCmplxLU.h" |
460 | 75 |
687 | 76 // Result of a QR decomposition. |
460 | 77 |
78 #include "dbleQR.h" | |
79 #include "CmplxQR.h" | |
80 | |
4210 | 81 #include "dbleQRP.h" |
82 #include "CmplxQRP.h" | |
83 | |
460 | 84 #endif |
85 | |
86 /* | |
87 ;;; Local Variables: *** | |
88 ;;; mode: C++ *** | |
89 ;;; End: *** | |
90 */ |