Skip to main content
. 2019 Oct 11;19(20):4402. doi: 10.3390/s19204402
Algorithm 4. 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+))|ϵNewton and 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+)