![]() |
MaxAlphaPURPOSE
Returns the maximizing alpha-element for a belief.
SYNOPSIS
function [nAlpha v]=MaxAlpha(P,b)
DESCRIPTION
Returns the maximizing alpha-element for a belief. Returns the identifier of the Policy element maximizing the value for a given belief, b. Additionally, it returns the actual value for the given belief. See also Policy. CROSS-REFERENCE INFORMATION
This function calls:
This function is called by:
SOURCE CODE
0001 function [nAlpha v]=MaxAlpha(P,b) 0002 % Returns the maximizing alpha-element for a belief. 0003 % 0004 % Returns the identifier of the Policy element maximizing the value for a 0005 % given belief, b. 0006 % Additionally, it returns the actual value for the given belief. 0007 % 0008 % See also Policy. 0009 0010 [v nAlpha]=max(Values(P,b)); 0011 |