Given that certain nullspace is spanned by a vector v, what would be the procedure to project out the v component from certain vector u? Perhaps with the Gram-Schmidt process of orthonormalization by updating
v = v - proj(u, v)
where proj(u, v) = (<u, v>/<u, u>)u, and <u, v> denotes the...