Mercurial > hg > octave-nkf
annotate liboctave/array/boolMatrix.h @ 19898:4197fc428c7d
maint: Update copyright notices for 2015.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Wed, 11 Feb 2015 14:19:08 -0500 |
parents | 50922b1c74df |
children |
rev | line source |
---|---|
2828 | 1 /* |
2 | |
19898
4197fc428c7d
maint: Update copyright notices for 2015.
John W. Eaton <jwe@octave.org>
parents:
19512
diff
changeset
|
3 Copyright (C) 1996-2015 John W. Eaton |
10521
4d1fc073fbb7
add some missing copyright stmts
Jaroslav Hajek <highegg@gmail.com>
parents:
10364
diff
changeset
|
4 Copyright (C) 2010 VZLU Prague |
2828 | 5 |
6 This file is part of Octave. | |
7 | |
8 Octave is free software; you can redistribute it and/or modify it | |
9 under the terms of the GNU General Public License as published by the | |
7016 | 10 Free Software Foundation; either version 3 of the License, or (at your |
11 option) any later version. | |
2828 | 12 |
13 Octave is distributed in the hope that it will be useful, but WITHOUT | |
14 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 for more details. | |
17 | |
18 You should have received a copy of the GNU General Public License | |
7016 | 19 along with Octave; see the file COPYING. If not, see |
20 <http://www.gnu.org/licenses/>. | |
2828 | 21 |
22 */ | |
23 | |
17822
ebb3ef964372
maint: Use common #define syntax "octave_filename_h" in h_files.
Rik <rik@octave.org>
parents:
17769
diff
changeset
|
24 #if !defined (octave_boolMatrix_h) |
ebb3ef964372
maint: Use common #define syntax "octave_filename_h" in h_files.
Rik <rik@octave.org>
parents:
17769
diff
changeset
|
25 #define octave_boolMatrix_h 1 |
2828 | 26 |
10351
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10158
diff
changeset
|
27 #include "Array.h" |
19507
25f535b90e52
Change boolMatrix to subclass boolNDArray rather than be another Array<bool>.
Carnë Draug <carandraug@octave.org>
parents:
17822
diff
changeset
|
28 #include "boolNDArray.h" |
2828 | 29 |
30 #include "mx-defs.h" | |
8774
b756ce0002db
split implementation and interface in mx-op-defs and MArray-defs
Jaroslav Hajek <highegg@gmail.com>
parents:
7620
diff
changeset
|
31 #include "mx-op-decl.h" |
2828 | 32 |
33 class | |
6108 | 34 OCTAVE_API |
19507
25f535b90e52
Change boolMatrix to subclass boolNDArray rather than be another Array<bool>.
Carnë Draug <carandraug@octave.org>
parents:
17822
diff
changeset
|
35 boolMatrix : public boolNDArray |
2828 | 36 { |
37 public: | |
38 | |
19507
25f535b90e52
Change boolMatrix to subclass boolNDArray rather than be another Array<bool>.
Carnë Draug <carandraug@octave.org>
parents:
17822
diff
changeset
|
39 boolMatrix (void) : boolNDArray () { } |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
40 |
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
41 boolMatrix (octave_idx_type r, octave_idx_type c) |
19507
25f535b90e52
Change boolMatrix to subclass boolNDArray rather than be another Array<bool>.
Carnë Draug <carandraug@octave.org>
parents:
17822
diff
changeset
|
42 : boolNDArray (dim_vector (r, c)) { } |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
43 |
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
44 boolMatrix (octave_idx_type r, octave_idx_type c, bool val) |
19507
25f535b90e52
Change boolMatrix to subclass boolNDArray rather than be another Array<bool>.
Carnë Draug <carandraug@octave.org>
parents:
17822
diff
changeset
|
45 : boolNDArray (dim_vector (r, c), val) { } |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
46 |
19512
50922b1c74df
liboctave: confirm that matrices constructors are limited to 2 dimensions.
Carnë Draug <carandraug@octave.org>
parents:
19509
diff
changeset
|
47 boolMatrix (const dim_vector& dv) : boolNDArray (dv.redim (2)) { } |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
48 |
19512
50922b1c74df
liboctave: confirm that matrices constructors are limited to 2 dimensions.
Carnë Draug <carandraug@octave.org>
parents:
19509
diff
changeset
|
49 boolMatrix (const dim_vector& dv, bool val) |
50922b1c74df
liboctave: confirm that matrices constructors are limited to 2 dimensions.
Carnë Draug <carandraug@octave.org>
parents:
19509
diff
changeset
|
50 : boolNDArray (dv.redim (2), val) { } |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
51 |
19507
25f535b90e52
Change boolMatrix to subclass boolNDArray rather than be another Array<bool>.
Carnë Draug <carandraug@octave.org>
parents:
17822
diff
changeset
|
52 boolMatrix (const Array<bool>& a) : boolNDArray (a.as_matrix ()) { } |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
53 |
19507
25f535b90e52
Change boolMatrix to subclass boolNDArray rather than be another Array<bool>.
Carnë Draug <carandraug@octave.org>
parents:
17822
diff
changeset
|
54 boolMatrix (const boolMatrix& a) : boolNDArray (a) { } |
2828 | 55 |
56 bool operator == (const boolMatrix& a) const; | |
57 bool operator != (const boolMatrix& a) const; | |
58 | |
10351
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10158
diff
changeset
|
59 boolMatrix transpose (void) const { return Array<bool>::transpose (); } |
3225 | 60 |
2828 | 61 // destructive insert/delete/reorder operations |
62 | |
17769
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
63 boolMatrix& insert (const boolMatrix& a, |
49a5a4be04a1
maint: Use GNU style coding conventions for code in liboctave/
Rik <rik@octave.org>
parents:
17744
diff
changeset
|
64 octave_idx_type r, octave_idx_type c); |
2828 | 65 |
3203 | 66 // unary operations |
67 | |
68 boolMatrix operator ! (void) const; | |
69 | |
70 // other operations | |
71 | |
7620
36594d5bbe13
Move diag function into the octave_value class
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
72 boolMatrix diag (octave_idx_type k = 0) const; |
6979 | 73 |
2828 | 74 #if 0 |
75 // i/o | |
76 | |
3504 | 77 friend std::ostream& operator << (std::ostream& os, const Matrix& a); |
78 friend std::istream& operator >> (std::istream& is, Matrix& a); | |
2828 | 79 #endif |
80 | |
14616
13cc11418393
improve handling of default resize fill value for arrays
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
81 void resize (octave_idx_type nr, octave_idx_type nc, bool rfv = false) |
11574
a83bad07f7e3
attempt better backward compatibility for Array resize functions
John W. Eaton <jwe@octave.org>
parents:
11570
diff
changeset
|
82 { |
a83bad07f7e3
attempt better backward compatibility for Array resize functions
John W. Eaton <jwe@octave.org>
parents:
11570
diff
changeset
|
83 Array<bool>::resize (dim_vector (nr, nc), rfv); |
a83bad07f7e3
attempt better backward compatibility for Array resize functions
John W. Eaton <jwe@octave.org>
parents:
11570
diff
changeset
|
84 } |
2828 | 85 }; |
86 | |
9550
3d6a9aea2aea
refactor binary & bool ops in liboctave
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
87 MM_BOOL_OP_DECLS (boolMatrix, boolMatrix, OCTAVE_API) |
3d6a9aea2aea
refactor binary & bool ops in liboctave
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
88 MS_BOOL_OP_DECLS (boolMatrix, bool, OCTAVE_API) |
3d6a9aea2aea
refactor binary & bool ops in liboctave
Jaroslav Hajek <highegg@gmail.com>
parents:
8920
diff
changeset
|
89 SM_BOOL_OP_DECLS (bool, boolMatrix, OCTAVE_API) |
6708 | 90 MM_CMP_OP_DECLS (boolMatrix, boolMatrix, OCTAVE_API) |
3685 | 91 |
2828 | 92 #endif |