⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 u_buttap.m

📁 matlab写的数字信号处理源代码,里面包括最基本的fft计算
💻 M
字号:
function [b,a] = u_buttap(N,Omegac);% Unnormalized Butterworth Analog Lowpass Filter Prototype% --------------------------------------------------------% [b,a] = u_buttap(N,Omegac);%      b = numerator polynomial coefficients of Ha(s)%      a = denominator polynomial coefficients of Ha(s)%      N = Order of the Butterworth Filter% Omegac = Cutoff frequency in radians/sec%[z,p,k] = buttap(N);      p = p*Omegac;      k = k*Omegac^N;      B = real(poly(z));      b0 = k;      b = k*B;      a = real(poly(p));

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -