资源简介
实现DS证据理论的Matlab源码,并且有相关论文参考,欢迎下载
代码片段和文件信息
function x=DS_fusion(xy)
%功能:融合xy两行向量
[nxmx]=size(x);
if 1~=nx
disp(‘x应为行向量‘);
return;
end
[nymy]=size(y);
if 1~=ny
disp(‘y应为行向量‘);
return;
end
if mx~=my
disp(‘xy列数应相等‘);
return;
end
temp=0;
for i=1:mx-1
x(1i)=x(1i)*y(1i)+x(1i)*y(1mx-1)+y(1i)*x(1mx-1);
if i==mx-1
x(1i)=x(1i)*y(1i);
end
temp=temp+x(1i);
end
for i=1:mx-1
x(1i)=x(1i)/temp;
end
x(1mx)=0;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 494 2008-04-24 11:47 DS\DS_fusion.m
文件 692 2008-04-24 11:26 DS\DS_out.m
文件 118515 2008-04-21 14:18 DS\D_S证据理论在火灾探测中的应用.pdf
文件 1291 2008-04-24 11:12 DS\simulate.m
文件 88 2008-08-08 10:36 DS\说明.txt
目录 0 2008-08-08 10:38 DS
----------- --------- ---------- ----- ----
121298 7
评论
共有 条评论