• 大小: 426B
    文件类型: .m
    金币: 1
    下载: 0 次
    发布日期: 2021-06-08
  • 语言: Matlab
  • 标签: matlab  FFT  

资源简介

matlab fft变换,使用简单,没有什么好说明的,但官方必须要我凑字五十个字

资源截图

代码片段和文件信息

fs=1024;%采样频率
N=10240;%采样点数量
n=0:N-1;
t=n/fs;

f0=10;
x1=10*sin(2*pi*f0*t);
x2=4*sin(2*pi*5*f0*t);
x=x1+x2+3*randn(size(t));
figure(1);
subplot(121);
plot(tx);
xlabel(‘t‘);
ylabel(‘x‘);
tit

评论

共有 条评论