comparison src/ov-base-mat.h @ 5885:bd3041e30d97

[project @ 2006-07-14 20:29:35 by jwe]
author jwe
date Fri, 14 Jul 2006 20:29:35 +0000
parents 6b9cec830d72
children c20eb7330d13
comparison
equal deleted inserted replaced
5884:9a5a0d5ef82a 5885:bd3041e30d97
92 92
93 octave_value subsasgn (const std::string& type, 93 octave_value subsasgn (const std::string& type,
94 const std::list<octave_value_list>& idx, 94 const std::list<octave_value_list>& idx,
95 const octave_value& rhs); 95 const octave_value& rhs);
96 96
97 octave_value do_index_op (const octave_value_list& idx, int resize_ok); 97 octave_value do_index_op (const octave_value_list& idx,
98 98 bool resize_ok = false);
99 octave_value do_index_op (const octave_value_list& idx)
100 { return do_index_op (idx, 0); }
101 99
102 void assign (const octave_value_list& idx, const MT& rhs); 100 void assign (const octave_value_list& idx, const MT& rhs);
103 101
104 dim_vector dims (void) const { return matrix.dims (); } 102 dim_vector dims (void) const { return matrix.dims (); }
105 103