셈툴 다운로드

셈툴 튜토리얼

신호처리 | 이산 시간 푸리에 변환의 켤레 대칭성 |

페이지 정보

작성자 cemtool 작성일14-04-23 15:01 조회12,522회 댓글0건

본문

일때, 이 신호의 이산 시간 푸리에 변환의 켤레 대칭성을 구해보자.

ex3_6.cem
subplot(1,1,1)
n = -5:5; x = (-0.9).^n;
k = -200:200; w = (pi/100)*k;
X = x * (exp(-j*pi/100)) .^ (n'*k);
magX = abs(X); angX =angle(X);
subplot(2,1,1); plot(w/pi,magX);
xtitle("frequency in units of pi"); ytitle("|X|")title("Magnitude Part")subplot(2,1,2); plot(w/pi,angX/pi);
xtitle("frequency in units of pi"); ytitle("radians/pi");
title("Angle Part");


댓글목록

등록된 댓글이 없습니다.