comparison liboctave/mx-ext.h @ 687:cba3b57a82db

[project @ 1994-09-09 23:28:08 by jwe]
author jwe
date Fri, 09 Sep 1994 23:28:08 +0000
parents c45e50c4ee94
children 18933dbd5e43
comparison
equal deleted inserted replaced
686:0faebdd7df57 687:cba3b57a82db
22 */ 22 */
23 23
24 #if !defined (octave_mx_ext_h) 24 #if !defined (octave_mx_ext_h)
25 #define octave_mx_ext_h 1 25 #define octave_mx_ext_h 1
26 26
27 /* 27 // Result of a AEP Balance operation.
28 * Result of a AEP Balance operation.
29 */
30 28
31 #include "dbleAEPBAL.h" 29 #include "dbleAEPBAL.h"
32 #include "CmplxAEPBAL.h" 30 #include "CmplxAEPBAL.h"
33 31
34 /* 32 // Result of a Determinant calculation.
35 * Result of a Determinant calculation.
36 */
37 33
38 #include "dbleDET.h" 34 #include "dbleDET.h"
39 #include "CmplxDET.h" 35 #include "CmplxDET.h"
40 36
41 /* 37 // Result of a GEP Balance operation
42 * Result of a GEP Balance operation 38 // Note: currenlty only do balancing on real data. Complex balancing
43 * Note: currenlty only do balancing on real data. Complex balancing 39 // done on magnitudes of complex data.
44 * done on magnitudes of complex data.
45 */
46 40
47 #include "dbleGEPBAL.h" 41 #include "dbleGEPBAL.h"
48 42
49 /* 43 // Result of a Cholesky Factorization
50 * Result of a Cholesky Factorization
51 */
52 44
53 #include "dbleCHOL.h" 45 #include "dbleCHOL.h"
54 #include "CmplxCHOL.h" 46 #include "CmplxCHOL.h"
55 47
56 /* 48 // Result of a Hessenberg Decomposition
57 * Result of a Hessenberg Decomposition
58 */
59 49
60 #include "dbleHESS.h" 50 #include "dbleHESS.h"
61 #include "CmplxHESS.h" 51 #include "CmplxHESS.h"
62 52
63 /* 53 // Result of a Schur Decomposition
64 * Result of a Schur Decomposition
65 */
66 54
67 #include "dbleSCHUR.h" 55 #include "dbleSCHUR.h"
68 #include "CmplxSCHUR.h" 56 #include "CmplxSCHUR.h"
69 57
70 /* 58 // Result of a Singular Value Decomposition.
71 * Result of a Singular Value Decomposition.
72 */
73 59
74 #include "dbleSVD.h" 60 #include "dbleSVD.h"
75 #include "CmplxSVD.h" 61 #include "CmplxSVD.h"
76 62
77 /* 63 // Result of an Eigenvalue computation.
78 * Result of an Eigenvalue computation.
79 */
80 64
81 #include "EIG.h" 65 #include "EIG.h"
82 66
83 /* 67 // Result of an LU decomposition.
84 * Result of an LU decomposition.
85 */
86 68
87 #include "dbleLU.h" 69 #include "dbleLU.h"
88 #include "CmplxLU.h" 70 #include "CmplxLU.h"
89 71
90 /* 72 // Result of a QR decomposition.
91 * Result of a QR decomposition.
92 */
93 73
94 #include "dbleQR.h" 74 #include "dbleQR.h"
95 #include "CmplxQR.h" 75 #include "CmplxQR.h"
96 76
97 #endif 77 #endif