셈툴 다운로드

셈툴 튜토리얼

신호처리 | 신호의 순환 이동 |

페이지 정보

작성자 cemtool 작성일14-04-23 15:35 조회13,540회 댓글0건

본문

11점 신호  이 주어질 때, 를 구하고 그려보자.

ex5_12.cem
subplot(1,1,1)// a) plot xec(n) and xoc(n) 
 n = 0:10; x = 10*(0.8) .^ n;
 [xec,xoc] = cirodev(x);
 subplot(2,1,1); stem(n,xec); title("Circular-even component");
 xtitle("n"); ytitle("xec(n)");
 subplot(2,1,2); stem(n,xoc); title("Circular-odd component");
 xtitle("n"); ytitle("xoc(n)");



ex5_12.cem
figuresubplot(1,1,1)//
// b) verify property
 X = dft(x,11); Xec = dft(xec,11); Xoc = dft(xoc,11);
 subplot(2,2,1); stem(n,real(X));
 title("Real{DFT[x(n)]}"); xtitle("k");
 subplot(2,2,2); stem(n,imag(X));
 title("Imag{DFT[x(n)]}"); xtitle("k");
 subplot(2,2,3); stem(n,real(Xec));
 title("DFT[xec(n)]"); xtitle("k");
 subplot(2,2,4); stem(n,imag(Xoc));
 title("DFT[xoc(n)]"); xtitle("k");
ex5_12-1.png

댓글목록

등록된 댓글이 없습니다.