Skip to content

overload subsasgn #68

@erik-roberts

Description

@erik-roberts

permit direct assignment of obj.data using object with () or {}.
eg before

obj = MDD(magic(3));
obj.data
obj.data(1:3) = 1:3;
obj.data

eg after

obj = MDD(magic(3));
obj.data
obj(1:3) = 1:3;
obj.data

Metadata

Metadata

Assignees

Labels

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions