Code covered by the BSD License
-
[euncraw,euncnorm, euncquot]=...
-
[y,a,b]=dsnorm(y)
-
dscdf(x,varargin)
-
erg=dsadf(fhandle,intervalnum...
-
erg=dsconfsample(fhandle,inte...
-
erg=dsdempstersrule(x,accurac...
-
erg=dsodf(fhandle,intervalnum...
-
erg=dsopt(fhandle,paramsl,par...
-
erg=dsred(y,thres)
-
erg=dswmix(x,w)
-
gaussiancopula(corr,number)
-
up=dspl(x)
-
y=dsaggunc(x)
-
y=dsavgwidth(x)
-
y=dsbel(x)
-
y=dsbound(fhandle,xlo,xhi,mas...
-
y=dsconf(x,conf)
-
y=dsdissonance(x)
-
y=dsevalmc(fhandle,x, mcIT, o...
-
y=dsexpect(x)
-
y=dsnonspec(x)
-
y=dsstruct(x)
-
dsexample.m
-
View all files
from
Imprecise probability propagation Toolbox
by Philipp Limbourg
Various methods for presentation, propagation, aggregation and plotting imprecise probability ...
|
| y=dsaggunc(x)
|
function y=dsaggunc(x)
%=========================================================================
% dsaggunc
%=========================================================================
% y=dsaggunc(x)
% Returns the aggregated uncertainty measure for of a Dempster-Shafer
% structure x. For further information on this uncertainty measure, see
% references.
%
% Input:
% x: Dempster-Shafer structure to be reduced
%
% Output:
% y: Aggregated uncertainty
%
% Usage:
% lambda=dsstruct([2,3,1])
% dss=dsodf('expinv',10000,lambda)
% y=dsaggunc(dss)
% =========================================================================
% Copyright (c) Philipp Limbourg, University of Duisburg-Essen
% www.uni-duisburg-essen.de/informationslogistik/
%=========================================================================
% Reference : Klir GJ: Uncertainty and Information : Foundations of
% Generalized Information Theory. Wiley-IEEE Press (2005).
% Copyright (c) Philipp Limbourg, University of Duisburg-Essen
% www.uni-duisburg-essen.de/informationslogistik/
%=========================================================================
y=x.ds(:,3).*log2(x.ds(:,2)-x.ds(:,1));
y=sum(y);
|
|
Contact us at files@mathworks.com