Mercurial > hg > octave-nkf
comparison src/ov-re-mat.h @ 2948:56be458e237f
[project @ 1997-05-09 13:37:35 by jwe]
author | jwe |
---|---|
date | Fri, 09 May 1997 13:51:06 +0000 |
parents | 4e7bea116f24 |
children | 5e0fe4c5d52f |
comparison
equal
deleted
inserted
replaced
2947:cf676ff8b702 | 2948:56be458e237f |
---|---|
83 | 83 |
84 octave_value index (const octave_value_list& idx) const; | 84 octave_value index (const octave_value_list& idx) const; |
85 | 85 |
86 void assign (const octave_value_list& idx, const Matrix& rhs); | 86 void assign (const octave_value_list& idx, const Matrix& rhs); |
87 | 87 |
88 void assign_struct_elt (assign_op, const string& elt_nm, | |
89 const octave_value& rhs); | |
90 | |
91 void assign_struct_elt (assign_op, const string& elt_nm, | |
92 const octave_value_list& idx, | |
93 const octave_value& rhs); | |
94 | |
88 idx_vector index_vector (void) const { return idx_vector (matrix); } | 95 idx_vector index_vector (void) const { return idx_vector (matrix); } |
96 | |
97 octave_value struct_elt_val (const string& nm, bool silent) const; | |
98 | |
99 octave_variable_reference | |
100 struct_elt_ref (octave_value *parent, const string& nm); | |
89 | 101 |
90 int rows (void) const { return matrix.rows (); } | 102 int rows (void) const { return matrix.rows (); } |
91 int columns (void) const { return matrix.columns (); } | 103 int columns (void) const { return matrix.columns (); } |
92 | 104 |
93 bool is_defined (void) const { return true; } | 105 bool is_defined (void) const { return true; } |