有M(M<10)个目标,目标从不存在到存在的概率为α,若当前时刻目标存在,在下一时刻仍存在的概率为μ,这样观察T(T<10)个时刻。如何将这M个目标在T时刻内的状态描述出来;要能体现上述两个概率。
我的方法如下,但不知道合理么?(因为在后面检测这些目标是否存在要用到这两个概率(作为先验知识))
clear all
clc
T=2;
M=6;
alfa=0.5;
mu=0.5;
mubiao_yuan=zeros(1,T*M);%%%目标状态
mubiao=rand(1,M);
for i=1:M
if mubiao(i)>alfa
mubiao(i)=0;
else
mubiao(i)=1;
end
end
mubiao_yuan(1:M)=mubiao;
for T_i=2:T
mubiao_yuan((T_i-1)*M+1:T_i*M)=mubiao_yuan((T_i-2)*M+1:(T_i-1)*M);
for M_i=1:M
temp=rand(1);
if mubiao_yuan((T_i-1)*M+M_i)==1
if temp>mu
mubiao_yuan((T_i-1)*M+M_i)=0;
else
mubiao_yuan((T_i-1)*M+M_i)=1;
end
else
if temp>alfa
mubiao_yuan((T_i-1)*M+M_i)=0;
else
mubiao_yuan((T_i-1)*M+M_i)=1;
end
end
end
end