Skip to content

Commit

Permalink
clarifying comments
Browse files Browse the repository at this point in the history
  • Loading branch information
VChristian committed Sep 24, 2024
1 parent 99fd19d commit de2ff3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/linear_solver_routines/iterative_hessian_sketch.jl
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function rsubsolve!(
type.step .= R' \ type.btilde
type.step .= R \ type.step
else
# SA might not full rank, apply More-Penrose inverse
# AS * SA might not full rank, apply More-Penrose inverse
# Solving Q R R' Q x = b; b = type.btilde
Q, R = qr(samp[2]')
type.step .= Q' * type.btilde # R R' Q' x = Q' * b
Expand Down

0 comments on commit de2ff3b

Please sign in to comment.