신호처리 | 주파수 응답 |
페이지 정보
작성자 cemtool 작성일14-04-23 15:09 조회12,417회 댓글0건본문
으로 특징되는 시스템의 주파수 응답 을 구하고, 크기와 위상 응답을 그려보자.
- ex3_13.cem
w = [0:500:1]*pi/500; % [0, pi] axis divided into 501 points. X = exp(j*w) ./ (exp(j*w) - 0.9*ones(1,501)); magX = abs(X); angX = angle(X); subplot(2,1,1); plot(w/pi,magX); xtitle("frequency in pi units"); ytitle("|H|"); title("Magnitude Response"); subplot(2,1,2); plot(w/pi,angX/pi); xtitle("frequency in pi units"); ytitle("Phase in pi Radians"); title("Phase Response");
댓글목록
등록된 댓글이 없습니다.