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