Mercurial > hg > octave-nkf
annotate liboctave/CmplxAEPBAL.h @ 8950:d865363208d6
include <iosfwd> instead of <iostream> in header files
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Tue, 10 Mar 2009 13:55:52 -0400 |
parents | a5e080076778 |
children | 16f53d29049f |
rev | line source |
---|---|
457 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1994, 1995, 1996, 1997, 2000, 2002, 2004, 2005, 2006, |
4 2007 John W. Eaton | |
8386
a5e080076778
make balance more Matlab-compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
7017
diff
changeset
|
5 Copyright (C) 2008 Jaroslav Hajek |
457 | 6 |
7 This file is part of Octave. | |
8 | |
9 Octave is free software; you can redistribute it and/or modify it | |
10 under the terms of the GNU General Public License as published by the | |
7016 | 11 Free Software Foundation; either version 3 of the License, or (at your |
12 option) any later version. | |
457 | 13 |
14 Octave is distributed in the hope that it will be useful, but WITHOUT | |
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
17 for more details. | |
18 | |
19 You should have received a copy of the GNU General Public License | |
7016 | 20 along with Octave; see the file COPYING. If not, see |
21 <http://www.gnu.org/licenses/>. | |
457 | 22 |
23 */ | |
24 | |
25 #if !defined (octave_ComplexAEPBALANCE_h) | |
26 #define octave_ComplexAEPBALANCE_h 1 | |
27 | |
8950
d865363208d6
include <iosfwd> instead of <iostream> in header files
John W. Eaton <jwe@octave.org>
parents:
8386
diff
changeset
|
28 #include <iosfwd> |
1730 | 29 #include <string> |
30 | |
8386
a5e080076778
make balance more Matlab-compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
7017
diff
changeset
|
31 #include "base-aepbal.h" |
457 | 32 #include "CMatrix.h" |
8386
a5e080076778
make balance more Matlab-compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
7017
diff
changeset
|
33 #include "dColVector.h" |
457 | 34 |
1881 | 35 class |
6108 | 36 OCTAVE_API |
8386
a5e080076778
make balance more Matlab-compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
7017
diff
changeset
|
37 ComplexAEPBALANCE : public base_aepbal<ComplexMatrix, ColumnVector> |
457 | 38 { |
39 public: | |
40 | |
8386
a5e080076778
make balance more Matlab-compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
7017
diff
changeset
|
41 ComplexAEPBALANCE (void) : base_aepbal<ComplexMatrix, ColumnVector> () { } |
1528 | 42 |
8386
a5e080076778
make balance more Matlab-compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
7017
diff
changeset
|
43 ComplexAEPBALANCE (const ComplexMatrix& a, bool noperm = false, |
a5e080076778
make balance more Matlab-compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
7017
diff
changeset
|
44 bool noscal = false); |
1528 | 45 |
8386
a5e080076778
make balance more Matlab-compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
7017
diff
changeset
|
46 ComplexAEPBALANCE (const ComplexAEPBALANCE& a) |
a5e080076778
make balance more Matlab-compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
7017
diff
changeset
|
47 : base_aepbal<ComplexMatrix, ColumnVector> (a) { } |
1933 | 48 |
8386
a5e080076778
make balance more Matlab-compatible
Jaroslav Hajek <highegg@gmail.com>
parents:
7017
diff
changeset
|
49 ComplexMatrix balancing_matrix (void) const; |
457 | 50 }; |
51 | |
52 #endif | |
53 | |
54 /* | |
55 ;;; Local Variables: *** | |
56 ;;; mode: C++ *** | |
57 ;;; End: *** | |
58 */ |