📄 clans5.m
字号:
function NTF=clans5(order,OSR,Q,rmax,opt)%Version of clans for MATLAB 5 or lower% Create the initial guessNTF = synthesizeNTF(order,OSR,opt,1+Q,0);Hz = NTF.z{1};x = zeros(1,order);odd = rem(order,2);if odd z = NTF.p{1}(1)/rmax; if any(abs(z))>1 %project poles outside rmax onto the circle z = z./abs(z); end s = (z-1)./(z+1); x(1)= sqrt(-s);endfor i=odd+1:2:order z = NTF.p{1}(i:i+1)/rmax; if any(abs(z))>1 %project poles outside rmax onto the circle z = z./abs(z); end s = (z-1)./(z+1); coeffs=poly(s); wn = sqrt(coeffs(3)); zeta = coeffs(2)/(2*wn); x(i) = sqrt(zeta); x(i+1) = sqrt(wn);end% Run the optimizerx=constr('dsclansObj',x,[],[],[],[],order,OSR,Q,rmax,Hz);NTF = dsclansNTF(x,order,rmax,Hz);return
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -