rbmatlab 0.10.01
|
00001 function res = subsasgn(df, S, val) 00002 %function res = subsasgn(df, S, val) 00003 % 00004 % function allowing access to member-variables of df 00005 % this simplifies use remarkably, although also some 00006 % private member-variables can be read, so data-capsulation is 00007 % slighlty violated by this. lternative would be to provide around 00008 % 20 methods for access to all data fields. Therefore this is the 00009 % better compromise. 00010 00011 % Bernard Haasdonk 9.5.2007 00012 00013 res = builtin('subsasgn', df, S, val);%| \docupdate