Mercurial > hg > octave-nkf
annotate liboctave/chMatrix.h @ 8174:ea9b5f31bfac
pkg.m: better handling of filenames with spaces
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Thu, 02 Oct 2008 15:00:28 -0400 |
parents | 36594d5bbe13 |
children | 7cbe01c21986 |
rev | line source |
---|---|
1573 | 1 /* |
2 | |
7017 | 3 Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2004, 2005, |
4 2006, 2007 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" | |
2349 | 32 #include "str-vec.h" |
1573 | 33 |
1728 | 34 class |
6108 | 35 OCTAVE_API |
1728 | 36 charMatrix : public MArray2<char> |
1573 | 37 { |
38 friend class ComplexMatrix; | |
39 | |
40 public: | |
41 | |
42 charMatrix (void) : MArray2<char> () { } | |
5275 | 43 charMatrix (octave_idx_type r, octave_idx_type c) : MArray2<char> (r, c) { } |
44 charMatrix (octave_idx_type r, octave_idx_type c, char val) : MArray2<char> (r, c, val) { } | |
6979 | 45 charMatrix (const dim_vector& dv) : MArray2<char> (dv) { } |
46 charMatrix (const dim_vector& dv, char val) : MArray2<char> (dv, val) { } | |
1573 | 47 charMatrix (const MArray2<char>& a) : MArray2<char> (a) { } |
48 charMatrix (const charMatrix& a) : MArray2<char> (a) { } | |
3189 | 49 charMatrix (char c); |
1573 | 50 charMatrix (const char *s); |
3504 | 51 charMatrix (const std::string& s); |
2349 | 52 charMatrix (const string_vector& s); |
1573 | 53 |
54 charMatrix& operator = (const charMatrix& a) | |
55 { | |
56 MArray2<char>::operator = (a); | |
57 return *this; | |
58 } | |
59 | |
2384 | 60 bool operator == (const charMatrix& a) const; |
61 bool operator != (const charMatrix& a) const; | |
1573 | 62 |
4902 | 63 charMatrix transpose (void) const { return MArray2<char>::transpose (); } |
64 | |
1573 | 65 // destructive insert/delete/reorder operations |
66 | |
5275 | 67 charMatrix& insert (const char *s, octave_idx_type r, octave_idx_type c); |
68 charMatrix& insert (const charMatrix& a, octave_idx_type r, octave_idx_type c); | |
1573 | 69 |
5275 | 70 std::string row_as_string (octave_idx_type, bool strip_ws = false, bool raw = false) const; |
1573 | 71 |
3189 | 72 // resize is the destructive equivalent for this one |
73 | |
5275 | 74 charMatrix extract (octave_idx_type r1, octave_idx_type c1, octave_idx_type r2, octave_idx_type c2) const; |
3189 | 75 |
7620
36594d5bbe13
Move diag function into the octave_value class
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
76 charMatrix diag (octave_idx_type k = 0) const; |
6979 | 77 |
4017 | 78 boolMatrix all (int dim = -1) const; |
79 boolMatrix any (int dim = -1) const; | |
3136 | 80 |
2255 | 81 #if 0 |
1573 | 82 // i/o |
83 | |
3504 | 84 friend std::ostream& operator << (std::ostream& os, const Matrix& a); |
85 friend std::istream& operator >> (std::istream& is, Matrix& a); | |
1573 | 86 #endif |
87 | |
3933 | 88 static char resize_fill_value (void) { return '\0'; } |
89 | |
1573 | 90 private: |
91 | |
5275 | 92 charMatrix (char *ch, octave_idx_type r, octave_idx_type c) : MArray2<char> (ch, r, c) { } |
1573 | 93 }; |
94 | |
6708 | 95 MS_CMP_OP_DECLS (charMatrix, char, OCTAVE_API) |
96 MS_BOOL_OP_DECLS (charMatrix, char, OCTAVE_API) | |
6456 | 97 |
6708 | 98 SM_CMP_OP_DECLS (char, charMatrix, OCTAVE_API) |
99 SM_BOOL_OP_DECLS (char, charMatrix, OCTAVE_API) | |
6456 | 100 |
6708 | 101 MM_CMP_OP_DECLS (charMatrix, charMatrix, OCTAVE_API) |
102 MM_BOOL_OP_DECLS (charMatrix, charMatrix, OCTAVE_API) | |
6456 | 103 |
104 MARRAY_FORWARD_DEFS (MArray2, charMatrix, char) | |
105 | |
1573 | 106 #endif |
107 | |
108 /* | |
109 ;;; Local Variables: *** | |
110 ;;; mode: C++ *** | |
111 ;;; End: *** | |
112 */ |