


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

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