subsref
PURPOSE 
Gets alpha-elements from a policy.
SYNOPSIS 
function [e a]=subsref(P,S)
DESCRIPTION 
CROSS-REFERENCE INFORMATION 
This function calls:
This function is called by:
SOURCE CODE 
0001 function [e a]=subsref(P,S)
0002
0003
0004
0005
0006
0007
0008
0009 if strcmp(S.type,'{}')
0010 e=P.elements{S.subs{:}};
0011 a=P.actions{S.subs{:}};
0012 else
0013 error('Undefined Polcy subsref')
0014 end
|