Mercurial > hg > octave-nkf
annotate liboctave/mx-ext.h @ 10687:a8ce6bdecce5
Improve documentation strings.
author | Rik <octave@nomad.inbox5.com> |
---|---|
date | Tue, 08 Jun 2010 20:22:38 -0700 |
parents | 4c0cdbe0acca |
children | fd0a3ac60b0e |
rev | line source |
---|---|
460 | 1 /* |
2 | |
8920 | 3 Copyright (C) 1994, 1995, 1996, 1997, 1998, 2002, 2005, 2007, 2008 |
7017 | 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 |
8335 | 34 #include "DET.h" |
460 | 35 |
687 | 36 // Result of a Cholesky Factorization |
460 | 37 |
38 #include "dbleCHOL.h" | |
39 #include "CmplxCHOL.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
40 #include "floatCHOL.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
41 #include "fCmplxCHOL.h" |
460 | 42 |
687 | 43 // Result of a Hessenberg Decomposition |
460 | 44 |
45 #include "dbleHESS.h" | |
46 #include "CmplxHESS.h" | |
47 | |
687 | 48 // Result of a Schur Decomposition |
460 | 49 |
50 #include "dbleSCHUR.h" | |
51 #include "CmplxSCHUR.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
52 #include "floatSCHUR.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
53 #include "fCmplxSCHUR.h" |
460 | 54 |
687 | 55 // Result of a Singular Value Decomposition. |
460 | 56 |
57 #include "dbleSVD.h" | |
58 #include "CmplxSVD.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
59 #include "floatSVD.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
60 #include "fCmplxSVD.h" |
460 | 61 |
687 | 62 // Result of an Eigenvalue computation. |
460 | 63 |
64 #include "EIG.h" | |
65 | |
687 | 66 // Result of an LU decomposition. |
460 | 67 |
68 #include "dbleLU.h" | |
69 #include "CmplxLU.h" | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
70 #include "floatLU.h" |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
71 #include "fCmplxLU.h" |
460 | 72 |
687 | 73 // Result of a QR decomposition. |
460 | 74 |
75 #include "dbleQR.h" | |
76 #include "CmplxQR.h" | |
77 | |
4210 | 78 #include "dbleQRP.h" |
79 #include "CmplxQRP.h" | |
80 | |
460 | 81 #endif |