Applies softmax the soft thresholding shrinkage operator to v with tolerance a. That is, output is the vector with entries with absolute value v_i - a if |v_i| > a and zero otherwise, with sign pattern matching that of v.
vec_shrink(v, a)
Vector to be thresholded.
Vector of tolerances.
thresholded v vector.
x,y,z
Iterates at termination.
its
Number of iterations required to converge.
errtol
Stopping error bound at termination
This function is used by other functions and should only be called explicitly for debugging purposes.
Used by: SZVD_ADMM
.