Calculate and plot the amplitude phase response of this filter as a function of frequency

조회 수: 16 (최근 30일)
The ratio of output and input voltage of a high pass filter is given by :
V0/Vi = (j*2pi*f*r*c)/(1+j*2pi*r*c).
Assume that r=16 kohm and c=1 micro f .Calculate and plot the amplitude phase response of this filter as a function of frequency ?

답변 (1개)

Honglei Chen
Honglei Chen 2013년 11월 13일
You already have the frequency response, so all you need to do is to plug in the frequency vector, f, based on your requirement and do abs and angle of it. For example
r = 16; c = 1;
H = @(f) (1i*2*pi*f*r*c)./(1+1i*2*pi*r*c);
f = 0:100;
P = H(f);
subplot(211),plot(f,20*log10(abs(P)));
subplot(212),plot(f,angle(P));
HTH

카테고리

Help CenterFile Exchange에서 Matched Filter and Ambiguity Function에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by