![]() |
plotPURPOSE
Plots a discrete belief.
SYNOPSIS
function h=plot(b,varargin)
DESCRIPTION
Plots a discrete belief. Plots a discrete belief as a curbe in the X-Y plane with X in the range [1,numStates] and Y the probability for the corresponding state. CROSS-REFERENCE INFORMATION
This function calls:
SOURCE CODE
0001 function h=plot(b,varargin) 0002 % Plots a discrete belief. 0003 % 0004 % Plots a discrete belief as a curbe in the X-Y plane with X in the range 0005 % [1,numStates] and Y the probability for the corresponding state. 0006 0007 h=plot(b.v,varargin{1:end}); |