Skip to main content
. 2019 Apr 10;19(7):1718. doi: 10.3390/s19071718
Algorithm 1 FBS algorithm for 1-norm penalized least squares problem
Input: x(0),A,AT,λ
Output: x(i+1)
  • 1:

    Set ρ=maxeig(ATA)

  • 2:

    Set μ:0<μ<1/ρ

  • 3:

    Number of iteration: Niter

  • 4:

    for i=0toNiterdo

  • 5:

    w(i)=x(i)μAT(Ax(i)dw)

  • 6:

    x(i+1)=soft(w(i),μλ)

  • 7:

    end for

  • 8:

    return x(i+1)