![]() |
sizePURPOSE
Returns the size of a policy.
SYNOPSIS
function s=size(P)
DESCRIPTION
Returns the size of a policy. Returns the number of alpha elements in a given Policy object. See also Policy. CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
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 |