460
|
1 /* |
|
2 |
2847
|
3 Copyright (C) 1996, 1997 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 |
|
9 Free Software Foundation; either version 2, or (at your option) any |
|
10 later version. |
|
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 |
|
18 along with Octave; see the file COPYING. If not, write to the Free |
1315
|
19 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
460
|
20 |
|
21 */ |
|
22 |
|
23 #if !defined (octave_mx_defs_h) |
|
24 #define octave_mx_defs_h 1 |
|
25 |
|
26 // Classes we declare. |
|
27 |
|
28 class Matrix; |
1574
|
29 class ComplexMatrix; |
2828
|
30 class boolMatrix; |
1574
|
31 class charMatrix; |
|
32 |
460
|
33 class ColumnVector; |
1574
|
34 class ComplexColumnVector; |
|
35 |
460
|
36 class RowVector; |
1574
|
37 class ComplexRowVector; |
|
38 |
460
|
39 class DiagMatrix; |
|
40 class ComplexDiagMatrix; |
1574
|
41 |
460
|
42 class AEPBALANCE; |
|
43 class ComplexAEPBALANCE; |
1574
|
44 |
460
|
45 class GEPBALANCE; |
1574
|
46 |
460
|
47 class CHOL; |
|
48 class ComplexCHOL; |
1574
|
49 |
460
|
50 class DET; |
|
51 class ComplexDET; |
1574
|
52 |
460
|
53 class EIG; |
1574
|
54 |
460
|
55 class HESS; |
|
56 class ComplexHESS; |
1574
|
57 |
460
|
58 class SCHUR; |
|
59 class ComplexSCHUR; |
1574
|
60 |
460
|
61 class SVD; |
|
62 class ComplexSVD; |
1574
|
63 |
460
|
64 class LU; |
|
65 class ComplexLU; |
1574
|
66 |
460
|
67 class QR; |
|
68 class ComplexQR; |
|
69 |
|
70 // Other data types we use but that don't always need to have full |
|
71 // declarations. |
|
72 |
1649
|
73 #include "oct-cmplx.h" |
460
|
74 |
|
75 class istream; |
|
76 class ostream; |
|
77 |
|
78 #ifndef MAPPER_FCN_TYPEDEFS |
|
79 #define MAPPER_FCN_TYPEDEFS 1 |
|
80 |
3248
|
81 typedef bool (*b_d_Mapper)(double); |
|
82 typedef bool (*b_c_Mapper)(const Complex&); |
|
83 |
460
|
84 typedef double (*d_d_Mapper)(double); |
|
85 typedef double (*d_c_Mapper)(const Complex&); |
|
86 typedef Complex (*c_c_Mapper)(const Complex&); |
|
87 |
|
88 #endif |
|
89 |
|
90 #endif |
|
91 |
|
92 /* |
|
93 ;;; Local Variables: *** |
|
94 ;;; mode: C++ *** |
|
95 ;;; End: *** |
|
96 */ |