GNU Octave  3.8.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
dbleGEPBAL.h
Go to the documentation of this file.
1 /*
2 
3 Copyright (C) 1994-2013 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_dbleGEPBAL_h)
24 #define octave_dbleGEPBAL_h 1
25 
26 #include <iosfwd>
27 #include <string>
28 
29 #include "dMatrix.h"
30 
31 class
32 OCTAVE_API
34 {
35 public:
36 
37  GEPBALANCE (void)
38  : balanced_mat (), balanced_mat2 (), balancing_mat (), balancing_mat2 ()
39  { }
40 
41  GEPBALANCE (const Matrix& a, const Matrix& b, const std::string& balance_job)
42  : balanced_mat (), balanced_mat2 (), balancing_mat (), balancing_mat2 ()
43  {
44  init (a, b, balance_job);
45  }
46 
48  : balanced_mat (a.balanced_mat), balanced_mat2 (a.balanced_mat2),
49  balancing_mat (a.balancing_mat), balancing_mat2 (a.balancing_mat2)
50  { }
51 
53  {
54  if (this != &a)
55  {
56  balanced_mat = a.balanced_mat;
57  balanced_mat2 = a.balanced_mat2;
58  balancing_mat = a.balancing_mat;
59  balancing_mat2 = a.balancing_mat2;
60  }
61  return *this;
62  }
63 
64  ~GEPBALANCE (void) { }
65 
66  Matrix balanced_matrix (void) const { return balanced_mat; }
67 
68  Matrix balanced_matrix2 (void) const { return balanced_mat2; }
69 
70  Matrix balancing_matrix (void) const { return balancing_mat; }
71 
72  Matrix balancing_matrix2 (void) const { return balancing_mat2; }
73 
74  friend std::ostream& operator << (std::ostream& os, const GEPBALANCE& a);
75 
76 private:
77 
82 
83  octave_idx_type init (const Matrix& a, const Matrix& b,
84  const std::string& balance_job);
85 };
86 
87 #endif