Skip to main content
. Author manuscript; available in PMC: 2020 Nov 1.
Published in final edited form as: IEEE J Biomed Health Inform. 2019 Jan 18;23(6):2494–2504. doi: 10.1109/JBHI.2019.2893880

ALGORITHM I.

Estimating FBN with self-scrubbing

Input: X,λ,γ
Output: W,V
Initialize V;
while not converged
 while not converged
  Wk+1 = Wk − 2α(XTVTVXWkXTVTVX);
  Wk+1 = prox(Wk+1); // based on Eq. (14).
 end
 update V by Eq. (19);
end
return W,V;