Singular vector transformation
What is singular vector transformation
The equivalent problem in function approximation
opts.intervals=[delta,1];
opts.objnorm = Inf;
opts.epsil = 0.1;
opts.npts = 500;
opts.isplot= true;
opts.fscale = 1; % disable further rescaling of f(x)
delta = 0.1;
targ = @(x) 0.8*sign(x);
parity = 1;
% agrees with parity
deg = 251;
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