셈툴 다운로드

셈툴 튜토리얼

신호처리 | 인과적 시스템 풀이 1 |

페이지 정보

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

본문

다음의 인과적 시스템에 대해,

a)  를 구하고, 극-영점 그래프를 그려보자.

ex4_11.cem
/*   Chapter 4: Example 4.11:
*/
 
// a). zplane function:
 b = [1, 0]; a = [1, -0.9];
 zplane(b,a);


b)  와  를 그려보자.

ex4_11.cem
// b).
figure b = [1,0]; a = [1, -0.9];
 [H,w] = freq_z(b,a,100);
 magH = abs(H); phaH = angle(H);
subplot(2,1,1); plot(w/pi,magH);
 xtitle("frequency in pi units"); ytitle("Magnitude");
 title("Magnitude Response");
 subplot(2,1,2);plot(w/pi,phaH/pi);
 xtitle("frequency in pi units"); ytitle("Phase in pi units");
 title("Phase Response");
ex4_11-1.png

댓글목록

등록된 댓글이 없습니다.