subsasgn

PURPOSE ^

SUBSASGN - handles indexed assignments to objects

SYNOPSIS ^

function globalmatrix = subsasgn(globalmatrix,index,val)

DESCRIPTION ^

SUBSASGN - handles indexed assignments to objects

   the first argument is the object, the second argument a structure array
   the third one is the value

   Usage:
      globalmatrix = subsasgn(globalmatrix,index,val)

   See also SUBSREF

CROSS-REFERENCE INFORMATION ^

This function calls: This function is called by:

SOURCE CODE ^

0001 function globalmatrix = subsasgn(globalmatrix,index,val)
0002 %SUBSASGN - handles indexed assignments to objects
0003 %
0004 %   the first argument is the object, the second argument a structure array
0005 %   the third one is the value
0006 %
0007 %   Usage:
0008 %      globalmatrix = subsasgn(globalmatrix,index,val)
0009 %
0010 %   See also SUBSREF
0011 
0012 globalmatrix=builtin('subsasgn',globalmatrix,index,val);

Generated on Sun 29-Mar-2009 20:22:55 by m2html © 2003