Skip to main content
. 2019 May 16;19(10):2276. doi: 10.3390/s19102276
Algorithm A1. Simplified Newton descent search algorithm for constrained estimation projection.
     1. Set μo=0 and k=1 and iter=1 and max_iter=30
Set α=(c(x^k+)Tc(x^k+))1
while|αc(x^k++μk+1c(x^k+))|ϵNewtonand iter < max_iter do
    k=k+1
    Δμk+1=αc(x^k++μkc(x^k+))
    μk+1=μk+Δμk+1
    iter=iter+1
end while
Solution:x^kP=x^k++μk+1c(x^k+)