dsaggunc.m
来自「这是一个国外的DST的Matlab工具箱」· M 代码 · 共 30 行
M
30 行
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);
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?