Skip to content

Commit

Permalink
DOC: disambiguate matmul binop in comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
rossbar committed Oct 27, 2021
1 parent 082e0ce commit 58f3a62
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scipy/sparse/linalg/isolve/_gcrotmk.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def _fgmres(matvec, v0, m, atol, lpsolve=None, rpsolve=None, cs=(), outer_v=(),

# Arnoldi LSQ problem

# Add new column to H=Q*R, padding other columns with zeros
# Add new column to H=Q@R, padding other columns with zeros
Q2 = np.zeros((j+2, j+2), dtype=Q.dtype, order='F')
Q2[:j+1,:j+1] = Q
Q2[j+1,j+1] = 1
Expand Down

0 comments on commit 58f3a62

Please sign in to comment.