Uniform singular value amplification
What is uniform singular value amplification
The equivalent problem in function approximation
a = 0.2;
targ = @(x) x/a;
deg = 101;
parity = mod(deg, 2);
delta =0.01;
opts.intervals=[0,a];
opts.objnorm = Inf;
% opts.epsil is usually chosen such that target function
% is bounded by 1-opts.epsil over D_delta
opts.epsil = 0.01;
opts.npts = 500;
opts.fscale = 0.9;
opts.isplot=true;
coef_full=cvx_poly_coef(targ, deg, opts);
% The solver outputs all Chebyshev coefficients while we have to post-select
% those of odd order due to the parity constraint.
coef = coef_full(1+parity:2:end);

Set up parameters
Solving phase factors by running the solver
Verifying the solution

Reference
Last updated