Mercurial > hg > octave-nkf
comparison src/ov-re-mat.cc @ 2962:5e0fe4c5d52f
[project @ 1997-05-12 03:13:57 by jwe]
author | jwe |
---|---|
date | Mon, 12 May 1997 03:21:56 +0000 |
parents | ac3368dba5d3 |
children | ebbc34ff7f66 |
comparison
equal
deleted
inserted
replaced
2961:8a77d52c9d02 | 2962:5e0fe4c5d52f |
---|---|
75 | 75 |
76 return retval; | 76 return retval; |
77 } | 77 } |
78 | 78 |
79 octave_value | 79 octave_value |
80 octave_matrix::index (const octave_value_list& idx) const | 80 octave_matrix::do_index_op (const octave_value_list& idx) const |
81 { | 81 { |
82 octave_value retval; | 82 octave_value retval; |
83 | 83 |
84 int len = idx.length (); | 84 int len = idx.length (); |
85 | 85 |
213 { | 213 { |
214 error ("indexed assignment for matrix properties is not implemented"); | 214 error ("indexed assignment for matrix properties is not implemented"); |
215 } | 215 } |
216 | 216 |
217 octave_value | 217 octave_value |
218 octave_matrix::struct_elt_val (const string& nm, bool silent) const | 218 octave_matrix::do_struct_elt_index_op (const string& nm, |
219 const octave_value_list& idx, | |
220 bool silent) | |
221 { | |
222 // XXX DO_ME XXX | |
223 } | |
224 | |
225 octave_value | |
226 octave_matrix::do_struct_elt_index_op (const string& nm, bool silent) | |
219 { | 227 { |
220 octave_value retval; | 228 octave_value retval; |
221 | 229 |
222 double nr = static_cast<double> (matrix.rows ()); | 230 double nr = static_cast<double> (matrix.rows ()); |
223 double nc = static_cast<double> (matrix.cols ()); | 231 double nc = static_cast<double> (matrix.cols ()); |