comparison src/ov-re-mat.cc @ 5898:da843f35775c

[project @ 2006-07-19 18:18:08 by jwe]
author jwe
date Wed, 19 Jul 2006 18:18:31 +0000
parents 2b35a7fe9302
children c20eb7330d13
comparison
equal deleted inserted replaced
5897:8545ec4d6e65 5898:da843f35775c
143 octave_matrix::complex_array_value (bool) const 143 octave_matrix::complex_array_value (bool) const
144 { 144 {
145 return ComplexNDArray (matrix); 145 return ComplexNDArray (matrix);
146 } 146 }
147 147
148 boolNDArray
149 octave_matrix::bool_array_value (void) const
150 {
151 return boolNDArray (matrix);
152 }
153
148 charNDArray 154 charNDArray
149 octave_matrix::char_array_value (bool) const 155 octave_matrix::char_array_value (bool) const
150 { 156 {
151 charNDArray retval (dims ()); 157 charNDArray retval (dims ());
152 158