Mercurial > hg > octave-lyh
annotate liboctave/chMatrix.h @ 8920:eb63fbe60fab
update copyright notices
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Sat, 07 Mar 2009 10:41:27 -0500 |
parents | b756ce0002db |
children | 4c0cdbe0acca |
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 |
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 | |
1989 | 29 #include "MArray2.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 |
1728 | 37 charMatrix : public MArray2<char> |
1573 | 38 { |
39 friend class ComplexMatrix; | |
40 | |
41 public: | |
42 | |
43 charMatrix (void) : MArray2<char> () { } | |
5275 | 44 charMatrix (octave_idx_type r, octave_idx_type c) : MArray2<char> (r, c) { } |
45 charMatrix (octave_idx_type r, octave_idx_type c, char val) : MArray2<char> (r, c, val) { } | |
6979 | 46 charMatrix (const dim_vector& dv) : MArray2<char> (dv) { } |
47 charMatrix (const dim_vector& dv, char val) : MArray2<char> (dv, val) { } | |
1573 | 48 charMatrix (const MArray2<char>& a) : MArray2<char> (a) { } |
49 charMatrix (const charMatrix& a) : MArray2<char> (a) { } | |
3189 | 50 charMatrix (char c); |
1573 | 51 charMatrix (const char *s); |
3504 | 52 charMatrix (const std::string& s); |
2349 | 53 charMatrix (const string_vector& s); |
1573 | 54 |
55 charMatrix& operator = (const charMatrix& a) | |
56 { | |
57 MArray2<char>::operator = (a); | |
58 return *this; | |
59 } | |
60 | |
2384 | 61 bool operator == (const charMatrix& a) const; |
62 bool operator != (const charMatrix& a) const; | |
1573 | 63 |
4902 | 64 charMatrix transpose (void) const { return MArray2<char>::transpose (); } |
65 | |
1573 | 66 // destructive insert/delete/reorder operations |
67 | |
5275 | 68 charMatrix& insert (const char *s, octave_idx_type r, octave_idx_type c); |
69 charMatrix& insert (const charMatrix& a, octave_idx_type r, octave_idx_type c); | |
1573 | 70 |
5275 | 71 std::string row_as_string (octave_idx_type, bool strip_ws = false, bool raw = false) const; |
1573 | 72 |
3189 | 73 // resize is the destructive equivalent for this one |
74 | |
5275 | 75 charMatrix extract (octave_idx_type r1, octave_idx_type c1, octave_idx_type r2, octave_idx_type c2) const; |
3189 | 76 |
7620
36594d5bbe13
Move diag function into the octave_value class
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
77 charMatrix diag (octave_idx_type k = 0) const; |
6979 | 78 |
4017 | 79 boolMatrix all (int dim = -1) const; |
80 boolMatrix any (int dim = -1) const; | |
3136 | 81 |
2255 | 82 #if 0 |
1573 | 83 // i/o |
84 | |
3504 | 85 friend std::ostream& operator << (std::ostream& os, const Matrix& a); |
86 friend std::istream& operator >> (std::istream& is, Matrix& a); | |
1573 | 87 #endif |
88 | |
3933 | 89 static char resize_fill_value (void) { return '\0'; } |
90 | |
1573 | 91 private: |
92 | |
5275 | 93 charMatrix (char *ch, octave_idx_type r, octave_idx_type c) : MArray2<char> (ch, r, c) { } |
1573 | 94 }; |
95 | |
6708 | 96 MS_CMP_OP_DECLS (charMatrix, char, OCTAVE_API) |
97 MS_BOOL_OP_DECLS (charMatrix, char, OCTAVE_API) | |
6456 | 98 |
6708 | 99 SM_CMP_OP_DECLS (char, charMatrix, OCTAVE_API) |
100 SM_BOOL_OP_DECLS (char, charMatrix, OCTAVE_API) | |
6456 | 101 |
6708 | 102 MM_CMP_OP_DECLS (charMatrix, charMatrix, OCTAVE_API) |
103 MM_BOOL_OP_DECLS (charMatrix, charMatrix, OCTAVE_API) | |
6456 | 104 |
105 MARRAY_FORWARD_DEFS (MArray2, charMatrix, char) | |
106 | |
1573 | 107 #endif |
108 | |
109 /* | |
110 ;;; Local Variables: *** | |
111 ;;; mode: C++ *** | |
112 ;;; End: *** | |
113 */ |