adaptivebfparamcb.m
来自「Matlab雷达工具箱」· M 代码 · 共 24 行
M
24 行
%adaptiveBFParamcb%% This is a callback function for the taperType parameter in the % adaptivebeamforming block.% Disable the parameter fields for taperParam and nbar if taperType is % chosen to 'uniform'% Disable the parameter field for nbar if taperType is chosen to 'cheby'tempCell=get_param(gcb,'MaskValues');taperType=tempCell{4};set_param(gcb,'MaskEnables',{'on','on','on','on','on','on'});switch(taperType) case 'uniform' set_param(gcb,'MaskVisibilities',{'on','on','on','on','off','off'}); case 'cheby' set_param(gcb,'MaskVisibilities',{'on','on','on','on','on','off'}); case 'taylor' set_param(gcb,'MaskVisibilities',{'on','on','on','on','on','on'}); end %switch
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?