00001 /* 00002 00003 Copyright (C) 1994-2012 John W. Eaton 00004 Copyright (C) 2008-2009 Jaroslav Hajek 00005 00006 This file is part of Octave. 00007 00008 Octave is free software; you can redistribute it and/or modify it 00009 under the terms of the GNU General Public License as published by the 00010 Free Software Foundation; either version 3 of the License, or (at your 00011 option) any later version. 00012 00013 Octave is distributed in the hope that it will be useful, but WITHOUT 00014 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or 00015 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License 00016 for more details. 00017 00018 You should have received a copy of the GNU General Public License 00019 along with Octave; see the file COPYING. If not, see 00020 <http://www.gnu.org/licenses/>. 00021 00022 */ 00023 00024 #if !defined (octave_ComplexAEPBALANCE_h) 00025 #define octave_ComplexAEPBALANCE_h 1 00026 00027 #include <iosfwd> 00028 #include <string> 00029 00030 #include "base-aepbal.h" 00031 #include "CMatrix.h" 00032 #include "dColVector.h" 00033 00034 class 00035 OCTAVE_API 00036 ComplexAEPBALANCE : public base_aepbal<ComplexMatrix, ColumnVector> 00037 { 00038 public: 00039 00040 ComplexAEPBALANCE (void) : base_aepbal<ComplexMatrix, ColumnVector> () { } 00041 00042 ComplexAEPBALANCE (const ComplexMatrix& a, bool noperm = false, 00043 bool noscal = false); 00044 00045 ComplexAEPBALANCE (const ComplexAEPBALANCE& a) 00046 : base_aepbal<ComplexMatrix, ColumnVector> (a) { } 00047 00048 ComplexMatrix balancing_matrix (void) const; 00049 }; 00050 00051 #endif