📄 dfreq.m
字号:
%f = dfreq(h, omega)
% Computation the frequency response of h in the point
% omega. The result is the same as FREQZ but the method
% is different. See also SFREQ and SFREQ1
%
function f = dfreq(h,omega)
N = length(h);
for I = 1:N
e(I) = exp(-j*(I-1)*omega);
end
e = e(:);
h = h(:)';
f = h*e;
%END
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -