余弦信号频谱表达式_【Matlab的图形绘制和频谱计算】+和+【基本信号的表达式】...

自己看吧,但愿你能理解,而不是COPY完事

-------------------------------------------------------

clear;

close all;

N=50;

t=1:N;

x=zeros(1,50);

x(1)=1; %单位冲击

figure;

subplot(2,1,1);

stem(x);

X=fft(x);

magX=abs(X);

subplot(2,1,2);

plot(t(1:N/2),magX(1:N/2));

N=1024;      %信号的抽样点数

fs=100;       %抽样频率,高于信号中最高频率的2倍

t=(0:N-1)/fs;

f=(0:N-1)*fs/N;

x0=sign(t); %阶跃

x1=sign(sign(8-t)+1);   %单个方波,宽度为8个采样周期

x2=square(2*pi*5*t,50);  %周期方波,5Hz,50%占空比

x3=exp(-t.^2);

y0=abs(fft(x0));     %FFT后求模

figure;

subplot(2,1,1)

plot(t,x0);

subplot(2,1,2)

plot(f,y0);

y1=abs(fft(x1));     %FFT后求模

figure;

subplot(2,1,1)

plot(t,x1);

subplot(2,1,2)

plot(f,y1);

y2=abs(fft(x2));

figure;

subplot(2,1,1)

plot(t,x2);

subplot(2,1,2)

plot(f,y2);

y3=abs(fft(x3));

figure;

subplot(2,1,1)

plot(t,x3);

subplot(2,1,2)

plot(f,y3);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值