Returns the size of a policy. Returns the number of alpha elements in a given Policy object. See also Policy.
0001 function s=size(P) 0002 % Returns the size of a policy. 0003 % 0004 % Returns the number of alpha elements in a given Policy object. 0005 % 0006 % See also Policy. 0007 0008 s=P.n; 0009