Mercurial > hg > octave-lojdl
comparison src/ov-base-mat.h @ 4247:fc9a075d10fb
[project @ 2002-12-30 23:05:27 by jwe]
author | jwe |
---|---|
date | Mon, 30 Dec 2002 23:05:27 +0000 |
parents | 23d06c9e1edd |
children | be631c1720ea |
comparison
equal
deleted
inserted
replaced
4246:0253850a08d7 | 4247:fc9a075d10fb |
---|---|
64 ~octave_base_matrix (void) { } | 64 ~octave_base_matrix (void) { } |
65 | 65 |
66 octave_value *clone (void) const { return new octave_base_matrix (*this); } | 66 octave_value *clone (void) const { return new octave_base_matrix (*this); } |
67 octave_value *empty_clone (void) const { return new octave_base_matrix (); } | 67 octave_value *empty_clone (void) const { return new octave_base_matrix (); } |
68 | 68 |
69 octave_value subsref (const std::string type, | 69 octave_value subsref (const std::string& type, |
70 const std::list<octave_value_list>& idx); | 70 const std::list<octave_value_list>& idx); |
71 | 71 |
72 octave_value subsasgn (const std::string type, | 72 octave_value subsasgn (const std::string& type, |
73 const std::list<octave_value_list>& idx, | 73 const std::list<octave_value_list>& idx, |
74 const octave_value& rhs); | 74 const octave_value& rhs); |
75 | 75 |
76 octave_value do_index_op (const octave_value_list& idx, int resize_ok); | 76 octave_value do_index_op (const octave_value_list& idx, int resize_ok); |
77 | 77 |