?? lcobj1.m
字號:
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 + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -