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

📄 filter_eliminatation.m

📁 matlab波形优化算法经常要用到的matlab toolbox工具箱:yalmip
💻 M
字号:
function [F_xw,F_robust] = filter_eliminatation(F_xw,w,order)
F_robust = set([]);
Fvars = getvariables(F_xw);
wvars = getvariables(w);
[mt,vt] = yalmip('monomtable');
if any(sum(mt(Fvars,wvars),2)>order)
    for i = 1:length(F_xw)
        Fi = sdpvar(F_xw(i));
        if any(sum(mt(getvariables(Fi),wvars),2)>order)
            [BilinearizeringConstraints,failure] = deriveBilinearizing(Fi,w,order);
            if failure
                error('Cannot get rid of nonlinear uncertainty in uncertain SDP')
            else
                % remove all the violating terms from the expression
                F_xw(i) = clear_poly_dep(F_xw(i),w,order);
                % and add the constraint that actually does this
                F_robust = F_robust + BilinearizeringConstraints;
            end
        end
    end
end

⌨️ 快捷键说明

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