Mercurial > hg > octave-nkf
comparison src/ov-cell.h @ 7530:bb0f2353cff5
new cell array ctype mappers
author | John W. Eaton <jwe@octave.org> |
---|---|
date | Mon, 25 Feb 2008 19:01:30 -0500 |
parents | a1dbe9d80eee |
children | c195bd0a5c64 |
comparison
equal
deleted
inserted
replaced
7529:7e1b042c5418 | 7530:bb0f2353cff5 |
---|---|
128 bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats); | 128 bool save_hdf5 (hid_t loc_id, const char *name, bool save_as_floats); |
129 | 129 |
130 bool load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug); | 130 bool load_hdf5 (hid_t loc_id, const char *name, bool have_h5giterate_bug); |
131 #endif | 131 #endif |
132 | 132 |
133 octave_value xisalnum (void) const { return matrix.xisalnum (); } | |
134 octave_value xisalpha (void) const { return matrix.xisalpha (); } | |
135 octave_value xisascii (void) const { return matrix.xisascii (); } | |
136 octave_value xiscntrl (void) const { return matrix.xiscntrl (); } | |
137 octave_value xisdigit (void) const { return matrix.xisdigit (); } | |
138 octave_value xisgraph (void) const { return matrix.xisgraph (); } | |
139 octave_value xislower (void) const { return matrix.xislower (); } | |
140 octave_value xisprint (void) const { return matrix.xisprint (); } | |
141 octave_value xispunct (void) const { return matrix.xispunct (); } | |
142 octave_value xisspace (void) const { return matrix.xisspace (); } | |
143 octave_value xisupper (void) const { return matrix.xisupper (); } | |
144 octave_value xisxdigit (void) const { return matrix.xisxdigit (); } | |
145 octave_value xtoascii (void) const { return matrix.xtoascii (); } | |
146 octave_value xtolower (void) const { return matrix.xtolower (); } | |
147 octave_value xtoupper (void) const { return matrix.xtoupper (); } | |
148 | |
133 mxArray *as_mxArray (void) const; | 149 mxArray *as_mxArray (void) const; |
134 | 150 |
135 private: | 151 private: |
136 | 152 |
137 DECLARE_OCTAVE_ALLOCATOR | 153 DECLARE_OCTAVE_ALLOCATOR |