jingweimo的个人博客分享 http://blog.sciencenet.cn/u/jingweimo

博文

Retrieval of individual components from a square wave

已有 2604 次阅读 2016-1-3 05:38 |系统分类:科研笔记

%% 1-D signal

AC=255/2;

DC=255/2;

f0=4; %frequency

ph=pi/6; %phase offset

x=linspace(0,1,1024);

ysq=DC+AC*square(2*pi*f0*x+ph);

figure; plot(x,ysq); title('square wave');

% Fourier analysis

sq_fft=fft(ysq);

mg_sq=abs(sq_fft);

mg_sq=mg_sq/length(mg_sq);

P=1+ceil((length(mg_sq)-1)/2); %Position of the maximum frequency

mg_sq(2:P)=2*mg_sq(2:P);

mg_sq=mg_sq(1:P); %Keep only positive frequencies

figure; stem(0:length(mg_sq)-1,mg_sq); title('magnitude spectrum')

%Retrieval of individient components by keep only the positive frequency

%f=n*f0, n is odd;

%amp=(2*A)/(n*pi), A=255, n=odd

fft_f4=zeros(size(sq_fft)); %freq = 4;

fft_f4(5)=sq_fft(5);

fft_f12=zeros(size(sq_fft)); %freq = 4;

fft_f12(13)=sq_fft(13);

figure; plot(x,2*real(ifft(fft_f4)),'r-'); hold on;

plot(x,2*real(ifft(fft_f12)),'b-');

title('Retrieved components');

%Alternatively: keep both negative and positive frequncies

fft_f4=zeros(size(sq_fft)); %freq = 4;

fft_f4(5)=sq_fft(5); fft_f4(end-3)=sq_fft(end-3);

fft_f12=zeros(size(sq_fft)); %freq = 4;

fft_f12(13)=sq_fft(13); fft_f12(end-11)=sq_fft(end-11);

figure; plot(x,real(ifft(fft_f4)),'r-'); hold on;

plot(x,real(ifft(fft_f12)),'b-');

title('Retrieved components');

%or shifting and anti-shifting the frequency origin

sq_sfft=fftshift(sq_fft); % The central position: P, 0 frequency

fft_f4=zeros(size(sq_fft));

fft_f4(P-4)=sq_sfft(P-4); fft_f4(P+4)=sq_sfft(P+4); fft_f4=fftshift(fft_f4);

fft_f12=zeros(size(sq_fft));

fft_f12(P-12)=sq_sfft(P-12); fft_f12(P+12)=sq_sfft(P+12); fft_f12=fftshift(fft_f12);

figure; plot(x,real(ifft(fft_f4)),'r-'); hold on;

plot(x,real(ifft(fft_f12)),'b-');

title('Retrieved components');






https://blog.sciencenet.cn/blog-578676-947684.html

上一篇:FFT is mirrored, noting the difference with Fourier series
下一篇:Matrix Multiplication: A*A'
收藏 IP: 68.48.108.*| 热度|

0

该博文允许注册用户评论 请点击登录 评论 (0 个评论)

数据加载中...
扫一扫,分享此博文

Archiver|手机版|科学网 ( 京ICP备07017567号-12 )

GMT+8, 2024-12-3 07:52

Powered by ScienceNet.cn

Copyright © 2007- 中国科学报社

返回顶部