Home > marsbar > @mardo > subsasgn.m

subsasgn

PURPOSE ^

method to overload . notation in assignments.

SYNOPSIS ^

function result = subsasgn(this, Struct, rhs)

DESCRIPTION ^

 method to overload . notation in assignments.
 . assignment for mardo objects acts on the contents of des_struct

 $Id$

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function result = subsasgn(this, Struct, rhs)
0002 % method to overload . notation in assignments.
0003 % . assignment for mardo objects acts on the contents of des_struct
0004 %
0005 % $Id$
0006 
0007 SPM = des_struct(this);
0008 SPM = builtin('subsasgn', SPM, Struct, rhs);
0009 result = des_struct(this, SPM);

Generated on Wed 11-May-2022 15:34:44 by m2html © 2003-2019