资源简介

内部有加速度计的原始数据,30Hz低通滤波之后的数据,并对这两组数据进行fft变换分析,可设置合适的低通滤波器。

资源截图

代码片段和文件信息

clc;

source=simout1;
filter=simout2;

%%  原始数据
subplot(311);
plot(source.Timesource.Data‘b‘filter.Timefilter.Data‘r‘);
title(‘数据‘);
legend(‘原始数据‘‘滤波之后数据‘);
grid on;

%% fft 
Ts=1000;
x=source.Data;
N=source.Length;
n=1:N;
n_2=1:N/2;
f=n*Ts/N;
y=fft(xN);
mag=abs(y);
subplot(312);
plot(f(n_2) mag(n_2));
title(‘原始数据fft‘);
axis([0 Ts/2 0 3*1e6]);
grid on;

%% fft 
Ts=1000;
x=filter.Data;
N=filter.Length;
n=1:N;
n_2=1:N/2;
f=n*Ts/N;
y=fft(xN);
mag=abs(y);
subplot(313);
plot(f(n_2) mag(n_2));
title(‘滤波之后数据fft‘);
axis([0 Ts/2 0 3*1e6]);
grid on;


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     文件         631  2018-11-27 23:07  fft_analysis.m
     文件      352792  2018-11-27 23:03  simout1.mat
     文件      793538  2018-11-27 23:03  simout2.mat

评论

共有 条评论