Matlabfreqs函数
freqs
模拟滤波器的频率响应
语法:
h = freqs(b,a,w)
[h,w] = freqs(b,a)
[h,w] = freqs(b,a,f)
freqs(b,a)
描述:
freqs 返回⼀个模拟滤波器的H(jw)的复频域响应(拉普拉斯格式)
请给出分⼦b和分母a
h = freqs(b, a, w) 根据系数向量计算返回模拟滤波器的复频域响应。freqs 计算在复平⾯虚轴上的频率响应h,⾓频率w确定了输⼊的实向量,因此必须包含⾄少⼀个频率点。
[h, w] = freqs(b, a) ⾃动挑选200个频率点来计算频率响应h
[h, w] = freqs(b, a, f) 挑选f个频率点来计算频率响应h
例⼦:
到并画出下⾯传递函数的频率响应
Matlab代码:
a = [1 0.4 1];
b = [0.2 0.3 1];
w = logspace(-1, 1);
logspace 功能:⽣成从10的a次⽅到10的b次⽅之间按对数等分的n个元素的⾏向量。n如果省略,则默认值为50。
freqs(b, a, w);
You can also create the plot with:
h = freqs(b,a,w);
mag = abs(h);
phase = angle(h);
subplot(2,1,1), loglog(w,mag)
subplot(2,1,2), semilogx(w,phase)
To convert to hertz, decibels, and degrees, use:
f = w/(2*pi);
mag = 20*log10(mag);
phase = phase*180/pi;
算法:
freqs evaluates the polynomials at each frequency point, then divides the numerator response by the denominator response:
frequency函数计算频数s = i*w;
h = polyval(b,s)./polyval(a,s)

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。