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
fCmplxGEPBAL.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_fCmplxGEPBAL_h)
24 #define octave_fCmplxGEPBAL_h 1
25 
26 #include <iosfwd>
27 #include <string>
28 
29 #include "fMatrix.h"
30 #include "fCMatrix.h"
31 
32 class
33 OCTAVE_API
35 {
36 public:
37 
39  : balanced_mat (), balanced_mat2 (), balancing_mat (), balancing_mat2 ()
40  { }
41 
43  const FloatComplexMatrix& b,
44  const std::string& balance_job)
45  : balanced_mat (), balanced_mat2 (), balancing_mat (), balancing_mat2 ()
46  {
47  init (a, b, balance_job);
48  }
49 
51  : balanced_mat (a.balanced_mat), balanced_mat2 (a.balanced_mat2),
52  balancing_mat (a.balancing_mat), balancing_mat2 (a.balancing_mat2)
53  { }
54 
56  {
57  if (this != &a)
58  {
59  balanced_mat = a.balanced_mat;
60  balanced_mat2 = a.balanced_mat2;
61  balancing_mat = a.balancing_mat;
62  balancing_mat2 = a.balancing_mat2;
63  }
64  return *this;
65  }
66 
68 
69  FloatComplexMatrix balanced_matrix (void) const { return balanced_mat; }
70 
71  FloatComplexMatrix balanced_matrix2 (void) const { return balanced_mat2; }
72 
73  FloatMatrix balancing_matrix (void) const { return balancing_mat; }
74 
75  FloatMatrix balancing_matrix2 (void) const { return balancing_mat2; }
76 
77  friend std::ostream& operator << (std::ostream& os,
78  const FloatComplexGEPBALANCE& a);
79 
80 private:
81 
86 
87  octave_idx_type init (const FloatComplexMatrix& a,
88  const FloatComplexMatrix& b,
89  const std::string& balance_job);
90 };
91 
92 #endif
FloatComplexMatrix balanced_mat2
Definition: fCmplxGEPBAL.h:83
FloatMatrix balancing_matrix2(void) const
Definition: fCmplxGEPBAL.h:75
FloatComplexMatrix balanced_matrix2(void) const
Definition: fCmplxGEPBAL.h:71
FloatComplexGEPBALANCE(const FloatComplexMatrix &a, const FloatComplexMatrix &b, const std::string &balance_job)
Definition: fCmplxGEPBAL.h:42
FloatComplexMatrix balanced_mat
Definition: fCmplxGEPBAL.h:82
FloatMatrix balancing_mat
Definition: fCmplxGEPBAL.h:84
FloatMatrix balancing_matrix(void) const
Definition: fCmplxGEPBAL.h:73
ComplexNDArray & operator=(const ComplexNDArray &a)
Definition: CNDArray.h:55
FloatMatrix balancing_mat2
Definition: fCmplxGEPBAL.h:85
FloatComplexMatrix balanced_matrix(void) const
Definition: fCmplxGEPBAL.h:69
template OCTAVE_API std::ostream & operator<<(std::ostream &, const Array< bool > &)
FloatComplexGEPBALANCE(const FloatComplexGEPBALANCE &a)
Definition: fCmplxGEPBAL.h:50