Mercurial > hg > octave-lyh
annotate liboctave/numeric/CmplxLU.h @ 17191:ca5103ab0b21
check_gzip_magic before get_file_format (wrong type detection, bug #39652)
* load-save.cc (get_file_format): call check_gzip_magic before get_file_format
to avoid random LS_MAT_ASCII detections in gzipped files.
* ls-mat-ascii.cc (looks_like_mat_ascii_file): New arg, IS which could also
be a gzipped file, is now opened in the calling function.
* ls-mat-ascii.h (looks_like_mat_ascii_file): New arg, IS.
author | Andreas Weber <andy.weber.aw@gmail.com> |
---|---|
date | Fri, 02 Aug 2013 19:48:34 +0200 |
parents | 648dabbb4c6b |
children |
rev | line source |
---|---|
457 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11586
diff
changeset
|
3 Copyright (C) 1994-2012 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 | |
23 #if !defined (octave_ComplexLU_h) | |
8018
8487847eb092
fCmplxLU.h, CmplxLU.h: fix typo in definition of multiple-inclusion guard macro
John W. Eaton <jwe@octave.org>
parents:
7017
diff
changeset
|
24 #define octave_ComplexLU_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) |
49 { | |
1881 | 50 if (this != &a) |
10312
cbc402e64d83
untabify liboctave header files
John W. Eaton <jwe@octave.org>
parents:
10158
diff
changeset
|
51 base_lu <ComplexMatrix> :: operator = (a); |
1992 | 52 |
1528 | 53 return *this; |
54 } | |
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 |