1. 首页
  2. 课程学习
  3. 专业指导
  4. 卡尔曼滤波源代码1

卡尔曼滤波源代码1

上传者: 2019-01-15 16:11:47上传 M文件 565B 热度 30次
卡尔曼滤波源代码 disp('loading example file, 500 samples [11.3kHz] of blues...'); load example; plot(x); pause; disp('Now use the median filter'); disp('p = 3'); plot([x, mfilt1d(x,3)]); pause; disp('p = 7'); plot([x, mfilt1d(x,7)]); pause; disp('Now the facet approach'); disp('p = 5, k = 0.1'); plot([x
用户评论
码姐姐匿名网友 2019-01-15 16:11:47

谢谢资源,非常感谢分享。