⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 bat_drawmse.m

📁 粒子滤波算法的时间分析程序
💻 M
字号:
load numParticle.m
[m,n] = size(numParticle);
% MIN = min(numParticle,[],1);
% MAX = max(numParticle,[],1);
% data = (numParticle - repmat(MIN,m,1)) ./ repmat(MAX-MIN,m,1);
data = numParticle;
figure(1);
clf;
x = (50:50:1000)';
plot(x,data(:,1),'b-*',x,data(:,2),'g-s',x,data(:,3),'c-+',x,data(:,4),'r-d');
%axis([1,m,0,2]);
legend('多项式重采样','残差重采样','分层重采样','分区重采样');
xlabel('采样粒子数目');
ylabel('滤波过程持续时间(ms)');

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -