rbmatlab  1.16.09
 All Classes Namespaces Files Functions Variables Modules Pages
subsasgn.m
1 function res = subsasgn(df, S, val)
2 %function res = subsasgn(df, S, val)
3 %
4 % function allowing access to member-variables of df
5 % this simplifies use remarkably, although also some
6 % private member-variables can be read, so data-capsulation is
7 % slighlty violated by this. lternative would be to provide around
8 % 20 methods for access to all data fields. Therefore this is the
9 % better compromise.
10 
11 % Bernard Haasdonk 9.5.2007
12 
13 res = builtin('subsasgn', df, S, val);%| \docupdate