Gibbs state
What is Gibbs state
The equivalent problem in function approximation
Setup parameters
beta = 2;
targ = @(x) exp(-beta * x);
delta = 0.2;
deg = 151;
opts.intervals=[delta,1];
opts.objnorm = 2;
% opts.epsil is chosen to ensure that the target function is bounded by
% 1-opts.epsil on D
opts.epsil = 0.2;
opts.npts = 500;
opts.fscale = 1;
opts.isplot = true;
opts.maxiter = 100;
opts.criteria = 1e-12;
opts.useReal = false;
opts.targetPre = true;
opts.method = 'Newton';Approximating the target function by polynomials


Solving phase factors by running the solver
Verifying the solution

Reference
Last updated