lcobj1.m

来自「code of an ADC implementation woith matl」· M 代码 · 共 18 行

M
18
字号
function [objective,constraints] = LCObj1(x,param,max_radius,dbg)%function [objective,constraints] = LCObj1(x,param,max_radius,dbg)% The objective and constraints function for the initial optimization% process used to put the roots of the denominator of the LCBP NTF inside % the unit circle.H = LCoptparam2tf(x,param);objective = 1;			% No actual objectivermax = max(abs(H.p{:}));constraints = rmax - max_radius;if dbg    fprintf(1,'x = [ ');    fprintf(1, '%.4f ',x);    fprintf(1,']\n');    fprintf(1,'rmax = %f\n\n',rmax);end

⌨️ 快捷键说明

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