Mercurial > hg > octave-nkf
annotate liboctave/numeric/CmplxLU.h @ 20750:3339c9bdfe6a
Activate FSAL property in dorpri timestepper
* scripts/ode/private/runge_kutta_45_dorpri.m: don't compute
first stage if values from previous iteration are passed.
* scripts/ode/private/integrate_adaptive.m: do not update
cmputed stages if timestep is rejected.
author | Carlo de Falco <carlo.defalco@polimi.it> |
---|---|
date | Sat, 03 Oct 2015 07:32:50 +0200 |
parents | 4197fc428c7d |
children |
rev | line source |
---|---|
457 | 1 /* |
2 | |
19898
4197fc428c7d
maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents:
17822
diff
changeset
|
3 Copyright (C) 1994-2015 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 | |
7016 | 9 Free Software Foundation; either version 3 of the License, or (at your |
10 option) any later version. | |
457 | 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 | |
7016 | 18 along with Octave; see the file COPYING. If not, see |
19 <http://www.gnu.org/licenses/>. | |
457 | 20 |
21 */ | |
22 | |
17822
ebb3ef964372
maint: Use common #define syntax "octave_filename_h" in h_files.
Rik <rik@octave.org>
parents:
17769
diff
changeset
|
23 #if !defined (octave_CmplxLU_h) |
ebb3ef964372
maint: Use common #define syntax "octave_filename_h" in h_files.
Rik <rik@octave.org>
parents:
17769
diff
changeset
|
24 #define octave_CmplxLU_h 1 |
457 | 25 |
1992 | 26 #include "base-lu.h" |
457 | 27 #include "dMatrix.h" |
28 #include "CMatrix.h" | |
29 | |
1881 | 30 class |
6108 | 31 OCTAVE_API |
8367
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8018
diff
changeset
|
32 ComplexLU : public base_lu <ComplexMatrix> |
457 | 33 { |
34 public: | |
35 | |
2049 | 36 ComplexLU (void) |
8367
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8018
diff
changeset
|
37 : base_lu <ComplexMatrix> () { } |
457 | 38 |
39 ComplexLU (const ComplexMatrix& a); | |
40 | |
2049 | 41 ComplexLU (const ComplexLU& a) |
8367
445d27d79f4e
support permutation matrix objects
Jaroslav Hajek <highegg@gmail.com>
parents:
8018
diff
changeset
|
42 : base_lu <ComplexMatrix> (a) { } |
457 | 43 |
11586
12df7854fa7c
strip trailing whitespace from source files
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
44 ComplexLU (const ComplexMatrix& l, const ComplexMatrix& u, |
9708 | 45 const PermMatrix& p) |
46 : base_lu <ComplexMatrix> (l, u, p) { } | |
47 | |
1528 | 48 ComplexLU& operator = (const ComplexLU& a) |
17769
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
49 { |
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
50 if (this != &a) |
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
51 base_lu <ComplexMatrix> :: operator = (a); |
1992 | 52 |
17769
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
53 return *this; |
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
54 } |
1528 | 55 |
1926 | 56 ~ComplexLU (void) { } |
9708 | 57 |
58 void update (const ComplexColumnVector& u, const ComplexColumnVector& v); | |
59 | |
60 void update (const ComplexMatrix& u, const ComplexMatrix& v); | |
61 | |
62 void update_piv (const ComplexColumnVector& u, const ComplexColumnVector& v); | |
63 | |
64 void update_piv (const ComplexMatrix& u, const ComplexMatrix& v); | |
457 | 65 }; |
66 | |
67 #endif |