tomgoldstein / phasepack-matlab

A software library for solving phase retrieval problems, and comparing phase retrieval methods.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

opt.reg is not used in phaselift

ZongyuLi-umich opened this issue · comments

In

muFinal = opts.regularizationPara; % Regularization Parameter

where we say

muFinal = opts.regularizationPara;   % Regularization Parameter

but later in the code we define

mu = norm(eig(AtL(b0)),1)*opts.tol;

And then we use mu everywhere,
so I don't see how muFinal is useful in this code.