457
|
1 /* |
|
2 |
2847
|
3 Copyright (C) 1996, 1997 John W. Eaton |
457
|
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 2, or (at your option) any |
|
10 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, write to the Free |
5307
|
19 Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA |
|
20 02110-1301, USA. |
457
|
21 |
|
22 */ |
|
23 |
|
24 #if !defined (octave_CHOL_h) |
|
25 #define octave_CHOL_h 1 |
|
26 |
3503
|
27 #include <iostream> |
457
|
28 |
|
29 #include "dMatrix.h" |
|
30 |
1881
|
31 class |
|
32 CHOL |
457
|
33 { |
|
34 public: |
|
35 |
1881
|
36 CHOL (void) : chol_mat () { } |
1528
|
37 |
|
38 CHOL (const Matrix& a) { init (a); } |
457
|
39 |
5275
|
40 CHOL (const Matrix& a, octave_idx_type& info) { info = init (a); } |
1528
|
41 |
1881
|
42 CHOL (const CHOL& a) : chol_mat (a.chol_mat) { } |
457
|
43 |
1528
|
44 CHOL& operator = (const CHOL& a) |
|
45 { |
1881
|
46 if (this != &a) |
|
47 chol_mat = a.chol_mat; |
457
|
48 |
1528
|
49 return *this; |
|
50 } |
|
51 |
|
52 Matrix chol_matrix (void) const { return chol_mat; } |
|
53 |
3504
|
54 friend std::ostream& operator << (std::ostream& os, const CHOL& a); |
457
|
55 |
|
56 private: |
|
57 |
1881
|
58 Matrix chol_mat; |
457
|
59 |
5275
|
60 octave_idx_type init (const Matrix& a); |
457
|
61 }; |
|
62 |
|
63 #endif |
|
64 |
|
65 /* |
|
66 ;;; Local Variables: *** |
|
67 ;;; mode: C++ *** |
|
68 ;;; End: *** |
|
69 */ |