Mercurial > hg > octave-nkf
annotate src/ov-ch-mat.h @ 15536:2e8eb9ac43a5 stable rc-3-6-4-0
3.6.4-rc0 release candidate
* configure.ac (AC_INIT): Version is now 3.6.2-rc0.
(OCTAVE_RELEASE_DATE): Now 2012-05-11.
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Wed, 17 Oct 2012 10:05:44 -0400 |
parents | 72c96de7a403 |
children |
rev | line source |
---|---|
2376 | 1 /* |
2 | |
14138
72c96de7a403
maint: update copyright notices for 2012
John W. Eaton <jwe@octave.org>
parents:
11523
diff
changeset
|
3 Copyright (C) 1996-2012 John W. Eaton |
11523 | 4 Copyright (C) 2009-2010 VZLU Prague |
2376 | 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. | |
2376 | 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/>. | |
2376 | 21 |
22 */ | |
23 | |
24 #if !defined (octave_char_matrix_h) | |
25 #define octave_char_matrix_h 1 | |
26 | |
27 #include <cstdlib> | |
28 | |
8950
d865363208d6
include <iosfwd> instead of <iostream> in header files
John W. Eaton <jwe@octave.org>
parents:
8920
diff
changeset
|
29 #include <iosfwd> |
2376 | 30 #include <string> |
31 | |
32 #include "mx-base.h" | |
2477 | 33 #include "oct-alloc.h" |
2376 | 34 #include "str-vec.h" |
35 | |
36 #include "error.h" | |
9689
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
37 #include "ov.h" |
2376 | 38 #include "ov-base.h" |
3219 | 39 #include "ov-base-mat.h" |
9689
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
40 #include "ov-re-mat.h" |
2376 | 41 #include "ov-typeinfo.h" |
42 | |
43 class octave_value_list; | |
44 | |
45 class tree_walker; | |
46 | |
2477 | 47 // Character matrix values. |
2376 | 48 |
49 class | |
4513 | 50 octave_char_matrix : public octave_base_matrix<charNDArray> |
2376 | 51 { |
9689
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
52 protected: |
2376 | 53 |
54 octave_char_matrix (void) | |
4513 | 55 : octave_base_matrix<charNDArray> () { } |
2376 | 56 |
9689
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
57 octave_char_matrix (const charMatrix& chm) |
4513 | 58 : octave_base_matrix<charNDArray> (chm) { } |
59 | |
9689
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
60 octave_char_matrix (const charNDArray& chm) |
4513 | 61 : octave_base_matrix<charNDArray> (chm) { } |
2376 | 62 |
10351
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10160
diff
changeset
|
63 octave_char_matrix (const Array<char>& chm) |
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10160
diff
changeset
|
64 : octave_base_matrix<charNDArray> (chm) { } |
5150ceb4dbb4
base charMatrix and boolMatrix on Array<char>
Jaroslav Hajek <highegg@gmail.com>
parents:
10160
diff
changeset
|
65 |
3189 | 66 octave_char_matrix (char c) |
4513 | 67 : octave_base_matrix<charNDArray> (c) { } |
3189 | 68 |
2376 | 69 octave_char_matrix (const char *s) |
4513 | 70 : octave_base_matrix<charNDArray> (s) { } |
2376 | 71 |
3523 | 72 octave_char_matrix (const std::string& s) |
4513 | 73 : octave_base_matrix<charNDArray> (s) { } |
2376 | 74 |
75 octave_char_matrix (const string_vector& s) | |
4513 | 76 : octave_base_matrix<charNDArray> (s) { } |
2376 | 77 |
78 octave_char_matrix (const octave_char_matrix& chm) | |
4513 | 79 : octave_base_matrix<charNDArray> (chm) { } |
2376 | 80 |
9689
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
81 public: |
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
82 |
2376 | 83 ~octave_char_matrix (void) { } |
84 | |
5759 | 85 octave_base_value *clone (void) const { return new octave_char_matrix (*this); } |
86 octave_base_value *empty_clone (void) const { return new octave_char_matrix (); } | |
2376 | 87 |
6720 | 88 idx_vector index_vector (void) const; |
5267 | 89 |
9685 | 90 builtin_type_t builtin_type (void) const { return btyp_char; } |
91 | |
2376 | 92 bool is_char_matrix (void) const { return true; } |
3180 | 93 bool is_real_matrix (void) const { return true; } |
2376 | 94 |
95 bool is_real_type (void) const { return true; } | |
96 | |
97 double double_value (bool = false) const; | |
98 | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
99 float float_value (bool = false) const; |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
100 |
3145 | 101 double scalar_value (bool frc_str_conv = false) const |
102 { return double_value (frc_str_conv); } | |
2916 | 103 |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
104 float float_scalar_value (bool frc_str_conv = false) const |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
105 { return float_value (frc_str_conv); } |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
106 |
4513 | 107 Matrix matrix_value (bool = false) const |
108 { return Matrix (matrix.matrix_value ()); } | |
2376 | 109 |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
110 FloatMatrix float_matrix_value (bool = false) const |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
111 { return FloatMatrix (matrix.matrix_value ()); } |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
112 |
4668 | 113 NDArray array_value (bool = false) const |
114 { return NDArray (matrix); } | |
115 | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
116 FloatNDArray float_array_value (bool = false) const |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
117 { return FloatNDArray (matrix); } |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
118 |
2376 | 119 Complex complex_value (bool = false) const; |
120 | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
121 FloatComplex float_complex_value (bool = false) const; |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
122 |
3145 | 123 ComplexMatrix complex_matrix_value (bool = false) const |
4513 | 124 { return ComplexMatrix (matrix.matrix_value ()); } |
2376 | 125 |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
126 FloatComplexMatrix float_complex_matrix_value (bool = false) const |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
127 { return FloatComplexMatrix (matrix.matrix_value ()); } |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
128 |
4668 | 129 ComplexNDArray complex_array_value (bool = false) const |
130 { return ComplexNDArray (matrix); } | |
131 | |
7789
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
132 FloatComplexNDArray float_complex_array_value (bool = false) const |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
133 { return FloatComplexNDArray (matrix); } |
82be108cc558
First attempt at single precision tyeps
David Bateman <dbateman@free.fr>
parents:
7017
diff
changeset
|
134 |
3145 | 135 charMatrix char_matrix_value (bool = false) const |
4513 | 136 { return matrix.matrix_value (); } |
2376 | 137 |
4550 | 138 charNDArray char_array_value (bool = false) const |
4543 | 139 { return matrix; } |
140 | |
5279 | 141 octave_value convert_to_str_internal (bool, bool, char type) const |
9689
34d6f005db4b
eliminate is_string argument from octave_value character array constructors
John W. Eaton <jwe@octave.org>
parents:
9685
diff
changeset
|
142 { return octave_value (matrix, type); } |
2449 | 143 |
4643 | 144 void print_raw (std::ostream& os, bool pr_as_read_syntax = false) const; |
145 | |
10503
fcf6341a8cab
octave_char_matrix::mex_get_data: new function
John W. Eaton <jwe@octave.org>
parents:
10351
diff
changeset
|
146 // Unsafe. This function exists to support the MEX interface. |
fcf6341a8cab
octave_char_matrix::mex_get_data: new function
John W. Eaton <jwe@octave.org>
parents:
10351
diff
changeset
|
147 // You should not use it anywhere else. |
fcf6341a8cab
octave_char_matrix::mex_get_data: new function
John W. Eaton <jwe@octave.org>
parents:
10351
diff
changeset
|
148 void *mex_get_data (void) const { return matrix.mex_get_data (); } |
fcf6341a8cab
octave_char_matrix::mex_get_data: new function
John W. Eaton <jwe@octave.org>
parents:
10351
diff
changeset
|
149 |
5900 | 150 mxArray *as_mxArray (void) const; |
151 | |
9812
f80c566bc751
improve unary mapper system
Jaroslav Hajek <highegg@gmail.com>
parents:
9690
diff
changeset
|
152 octave_value map (unary_mapper_t umap) const; |
2376 | 153 }; |
154 | |
155 #endif |