


SUBSREF - handles indexed references to objects
the first argument is the object and the second one a structure array
Usage:
acceleratedtriaelem = subsref(acceleratedtriaelem,index)
See also SUBSASGN

0001 function acceleratedtriaelem = subsref(acceleratedtriaelem,index) 0002 %SUBSREF - handles indexed references to objects 0003 % 0004 % the first argument is the object and the second one a structure array 0005 % Usage: 0006 % acceleratedtriaelem = subsref(acceleratedtriaelem,index) 0007 % 0008 % See also SUBSASGN 0009 0010 acceleratedtriaelem=builtin('subsref',acceleratedtriaelem,index);