Mercurial > hg > octave-nkf
annotate liboctave/chMatrix.h @ 10521:4d1fc073fbb7
add some missing copyright stmts
author | Jaroslav Hajek <highegg@gmail.com> |
---|---|
date | Wed, 14 Apr 2010 12:23:13 +0200 |
parents | 96ed7c629bbd |
children | a117dc8ea1b9 |
rev | line source |
---|---|
1573 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2004, 2005, |
8920 | 4 2006, 2007, 2008, 2009 John W. Eaton |
10521
4d1fc073fbb7
add some missing copyright stmts
Jaroslav Hajek <highegg@gmail.com>
parents:
10364
diff
changeset
|
5 Copyright (C) 2010 VZLU Prague |
1573 | 6 |
7 This file is part of Octave. | |
8 | |
9 Octave is free software; you can redistribute it and/or modify it | |
10 under the terms of the GNU General Public License as published by the | |
7016 | 11 Free Software Foundation; either version 3 of the License, or (at your |
12 option) any later version. | |
1573 | 13 |
14 Octave is distributed in the hope that it will be useful, but WITHOUT | |
15 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
16 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
17 for more details. | |
18 | |
19 You should have received a copy of the GNU General Public License | |
7016 | 20 along with Octave; see the file COPYING. If not, see |
21 <http://www.gnu.org/licenses/>. | |
1573 | 22 |
23 */ | |
24 | |
1687 | 25 #if !defined (octave_chMatrix_int_h) |
26 #define octave_chMatrix_int_h 1 | |
1573 | 27 |
1728 | 28 #include <string> |
29 | |
10351
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
30 #include "Array.h" |
1573 | 31 |
32 #include "mx-defs.h" | |
8774
b756ce0002db
split implementation and interface in mx-op-defs and MArray-defs
Jaroslav Hajek <highegg@gmail.com>
parents:
8290
diff
changeset
|
33 #include "mx-op-decl.h" |
2349 | 34 #include "str-vec.h" |
1573 | 35 |
1728 | 36 class |
6108 | 37 OCTAVE_API |
10351
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
38 charMatrix : public Array<char> |
1573 | 39 { |
40 friend class ComplexMatrix; | |
41 | |
42 public: | |
43 | |
10351
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
44 charMatrix (void) : Array<char> () { } |
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
45 charMatrix (octave_idx_type r, octave_idx_type c) : Array<char> (r, c) { } |
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
46 charMatrix (octave_idx_type r, octave_idx_type c, char val) : Array<char> (r, c, val) { } |
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
47 charMatrix (const dim_vector& dv) : Array<char> (dv) { } |
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
48 charMatrix (const dim_vector& dv, char val) : Array<char> (dv, val) { } |
10352 | 49 charMatrix (const Array<char>& a) : Array<char> (a.as_matrix ()) { } |
10351
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
50 charMatrix (const charMatrix& a) : Array<char> (a) { } |
3189 | 51 charMatrix (char c); |
1573 | 52 charMatrix (const char *s); |
3504 | 53 charMatrix (const std::string& s); |
2349 | 54 charMatrix (const string_vector& s); |
1573 | 55 |
56 charMatrix& operator = (const charMatrix& a) | |
57 { | |
10351
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
58 Array<char>::operator = (a); |
1573 | 59 return *this; |
60 } | |
61 | |
2384 | 62 bool operator == (const charMatrix& a) const; |
63 bool operator != (const charMatrix& a) const; | |
1573 | 64 |
10351
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
65 charMatrix transpose (void) const { return Array<char>::transpose (); } |
4902 | 66 |
1573 | 67 // destructive insert/delete/reorder operations |
68 | |
5275 | 69 charMatrix& insert (const char *s, octave_idx_type r, octave_idx_type c); |
70 charMatrix& insert (const charMatrix& a, octave_idx_type r, octave_idx_type c); | |
1573 | 71 |
5275 | 72 std::string row_as_string (octave_idx_type, bool strip_ws = false, bool raw = false) const; |
1573 | 73 |
3189 | 74 // resize is the destructive equivalent for this one |
75 | |
5275 | 76 charMatrix extract (octave_idx_type r1, octave_idx_type c1, octave_idx_type r2, octave_idx_type c2) const; |
3189 | 77 |
7620
36594d5bbe13
Move diag function into the octave_value class
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
78 charMatrix diag (octave_idx_type k = 0) const; |
6979 | 79 |
4017 | 80 boolMatrix all (int dim = -1) const; |
81 boolMatrix any (int dim = -1) const; | |
3136 | 82 |
2255 | 83 #if 0 |
1573 | 84 // i/o |
85 | |
3504 | 86 friend std::ostream& operator << (std::ostream& os, const Matrix& a); |
87 friend std::istream& operator >> (std::istream& is, Matrix& a); | |
1573 | 88 #endif |
89 | |
3933 | 90 static char resize_fill_value (void) { return '\0'; } |
91 | |
1573 | 92 }; |
93 | |
6708 | 94 MS_CMP_OP_DECLS (charMatrix, char, OCTAVE_API) |
95 MS_BOOL_OP_DECLS (charMatrix, char, OCTAVE_API) | |
6456 | 96 |
6708 | 97 SM_CMP_OP_DECLS (char, charMatrix, OCTAVE_API) |
98 SM_BOOL_OP_DECLS (char, charMatrix, OCTAVE_API) | |
6456 | 99 |
6708 | 100 MM_CMP_OP_DECLS (charMatrix, charMatrix, OCTAVE_API) |
101 MM_BOOL_OP_DECLS (charMatrix, charMatrix, OCTAVE_API) | |
6456 | 102 |
1573 | 103 #endif |