GNU Octave  4.0.0
A high-level interpreted language, primarily intended for numerical computations, mostly compatible with Matlab
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
CmplxGEPBAL.h
Go to the documentation of this file.
1 /*
2 
3 Copyright (C) 1994-2015 John W. Eaton
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 3 of the License, or (at your
10 option) any 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, see
19 <http://www.gnu.org/licenses/>.
20 
21 */
22 
23 #if !defined (octave_CmplxGEPBAL_h)
24 #define octave_CmplxGEPBAL_h 1
25 
26 #include <iosfwd>
27 #include <string>
28 
29 #include "CMatrix.h"
30 #include "dMatrix.h"
31 
32 class
33 OCTAVE_API
35 {
36 public:
37 
39  : balanced_mat (), balanced_mat2 (), balancing_mat (), balancing_mat2 ()
40  { }
41 
43  const std::string& balance_job)
44  : balanced_mat (), balanced_mat2 (), balancing_mat (), balancing_mat2 ()
45  {
46  init (a, b, balance_job);
47  }
48 
50  : balanced_mat (a.balanced_mat), balanced_mat2 (a.balanced_mat2),
51  balancing_mat (a.balancing_mat), balancing_mat2 (a.balancing_mat2) { }
52 
53  ComplexGEPBALANCE& operator = (const ComplexGEPBALANCE& a)
54  {
55  if (this != &a)
56  {
57  balanced_mat = a.balanced_mat;
58  balanced_mat2 = a.balanced_mat2;
59  balancing_mat = a.balancing_mat;
60  balancing_mat2 = a.balancing_mat2;
61  }
62  return *this;
63  }
64 
65  ~ComplexGEPBALANCE (void) { }
66 
67  ComplexMatrix balanced_matrix (void) const { return balanced_mat; }
68 
69  ComplexMatrix balanced_matrix2 (void) const { return balanced_mat2; }
70 
71  Matrix balancing_matrix (void) const { return balancing_mat; }
72 
73  Matrix balancing_matrix2 (void) const { return balancing_mat2; }
74 
75  friend std::ostream& operator << (std::ostream& os,
76  const ComplexGEPBALANCE& a);
77 
78 private:
79 
84 
85  octave_idx_type init (const ComplexMatrix& a, const ComplexMatrix& b,
86  const std::string& balance_job);
87 };
88 
89 #endif
~ComplexGEPBALANCE(void)
Definition: CmplxGEPBAL.h:65
ComplexMatrix balanced_mat
Definition: CmplxGEPBAL.h:80
ComplexGEPBALANCE(const ComplexGEPBALANCE &a)
Definition: CmplxGEPBAL.h:49
ComplexMatrix balanced_mat2
Definition: CmplxGEPBAL.h:81
ComplexGEPBALANCE(const ComplexMatrix &a, const ComplexMatrix &b, const std::string &balance_job)
Definition: CmplxGEPBAL.h:42
ComplexGEPBALANCE(void)
Definition: CmplxGEPBAL.h:38
Matrix balancing_matrix2(void) const
Definition: CmplxGEPBAL.h:73
Definition: dMatrix.h:35
ComplexMatrix balanced_matrix2(void) const
Definition: CmplxGEPBAL.h:69
Matrix balancing_mat
Definition: CmplxGEPBAL.h:82
Matrix balancing_mat2
Definition: CmplxGEPBAL.h:83
Matrix balancing_matrix(void) const
Definition: CmplxGEPBAL.h:71
template OCTAVE_API std::ostream & operator<<(std::ostream &, const Array< bool > &)
ComplexMatrix balanced_matrix(void) const
Definition: CmplxGEPBAL.h:67