Mercurial > hg > octave-lyh
annotate liboctave/array/chMatrix.h @ 16660:cbb1bb7a5c3d
Added tag ss-3-7-5 for changeset 608e307b4914
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Tue, 14 May 2013 05:23:53 -0400 |
parents | 648dabbb4c6b |
children |
rev | line source |
---|---|
1573 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
12959
diff
changeset
|
3 Copyright (C) 1995-2012 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 |
1573 | 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. | |
1573 | 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/>. | |
1573 | 21 |
22 */ | |
23 | |
1687 | 24 #if !defined (octave_chMatrix_int_h) |
25 #define octave_chMatrix_int_h 1 | |
1573 | 26 |
1728 | 27 #include <string> |
28 | |
10351
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
29 #include "Array.h" |
1573 | 30 |
31 #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
|
32 #include "mx-op-decl.h" |
2349 | 33 #include "str-vec.h" |
1573 | 34 |
1728 | 35 class |
6108 | 36 OCTAVE_API |
10351
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
37 charMatrix : public Array<char> |
1573 | 38 { |
39 friend class ComplexMatrix; | |
40 | |
41 public: | |
42 | |
10351
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
43 charMatrix (void) : Array<char> () { } |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
44 |
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
45 charMatrix (octave_idx_type r, octave_idx_type c) |
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
46 : Array<char> (dim_vector (r, c)) { } |
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
47 |
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
48 charMatrix (octave_idx_type r, octave_idx_type c, char val) |
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
49 : Array<char> (dim_vector (r, c), val) { } |
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
50 |
10351
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
51 charMatrix (const dim_vector& dv) : Array<char> (dv) { } |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
52 |
10351
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
53 charMatrix (const dim_vector& dv, char val) : Array<char> (dv, val) { } |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
54 |
10352 | 55 charMatrix (const Array<char>& a) : Array<char> (a.as_matrix ()) { } |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
56 |
10351
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
57 charMatrix (const charMatrix& a) : Array<char> (a) { } |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
58 |
3189 | 59 charMatrix (char c); |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
60 |
1573 | 61 charMatrix (const char *s); |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
62 |
3504 | 63 charMatrix (const std::string& s); |
11570
57632dea2446
attempt better backward compatibility for Array constructors
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
64 |
12959
0c86ae6f7c34
new text_label_property graphics property type
John W. Eaton <jwe@octave.org>
parents:
11574
diff
changeset
|
65 charMatrix (const string_vector& s, char fill_value = '\0'); |
1573 | 66 |
67 charMatrix& operator = (const charMatrix& a) | |
68 { | |
10351
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
69 Array<char>::operator = (a); |
1573 | 70 return *this; |
71 } | |
72 | |
2384 | 73 bool operator == (const charMatrix& a) const; |
74 bool operator != (const charMatrix& a) const; | |
1573 | 75 |
10351
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10267
diff
changeset
|
76 charMatrix transpose (void) const { return Array<char>::transpose (); } |
4902 | 77 |
1573 | 78 // destructive insert/delete/reorder operations |
79 | |
5275 | 80 charMatrix& insert (const char *s, octave_idx_type r, octave_idx_type c); |
81 charMatrix& insert (const charMatrix& a, octave_idx_type r, octave_idx_type c); | |
1573 | 82 |
11265
a117dc8ea1b9
charMatrix::row_as_string: never strip trailing nul characters
John W. Eaton <jwe@octave.org>
parents:
10521
diff
changeset
|
83 std::string row_as_string (octave_idx_type, bool strip_ws = false) const; |
1573 | 84 |
3189 | 85 // resize is the destructive equivalent for this one |
86 | |
5275 | 87 charMatrix extract (octave_idx_type r1, octave_idx_type c1, octave_idx_type r2, octave_idx_type c2) const; |
3189 | 88 |
14616
13cc11418393
improve handling of default resize fill value for arrays
John W. Eaton <jwe@octave.org>
parents:
14138
diff
changeset
|
89 void resize (octave_idx_type nr, octave_idx_type nc, char rfv = 0) |
11574
a83bad07f7e3
attempt better backward compatibility for Array resize functions
John W. Eaton <jwe@octave.org>
parents:
11570
diff
changeset
|
90 { |
a83bad07f7e3
attempt better backward compatibility for Array resize functions
John W. Eaton <jwe@octave.org>
parents:
11570
diff
changeset
|
91 Array<char>::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
|
92 } |
a83bad07f7e3
attempt better backward compatibility for Array resize functions
John W. Eaton <jwe@octave.org>
parents:
11570
diff
changeset
|
93 |
7620
36594d5bbe13
Move diag function into the octave_value class
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
94 charMatrix diag (octave_idx_type k = 0) const; |
6979 | 95 |
4017 | 96 boolMatrix all (int dim = -1) const; |
97 boolMatrix any (int dim = -1) const; | |
3136 | 98 |
2255 | 99 #if 0 |
1573 | 100 // i/o |
101 | |
3504 | 102 friend std::ostream& operator << (std::ostream& os, const Matrix& a); |
103 friend std::istream& operator >> (std::istream& is, Matrix& a); | |
1573 | 104 #endif |
105 }; | |
106 | |
6708 | 107 MS_CMP_OP_DECLS (charMatrix, char, OCTAVE_API) |
108 MS_BOOL_OP_DECLS (charMatrix, char, OCTAVE_API) | |
6456 | 109 |
6708 | 110 SM_CMP_OP_DECLS (char, charMatrix, OCTAVE_API) |
111 SM_BOOL_OP_DECLS (char, charMatrix, OCTAVE_API) | |
6456 | 112 |
6708 | 113 MM_CMP_OP_DECLS (charMatrix, charMatrix, OCTAVE_API) |
114 MM_BOOL_OP_DECLS (charMatrix, charMatrix, OCTAVE_API) | |
6456 | 115 |
1573 | 116 #endif |