We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b5cc56a commit a3c2681Copy full SHA for a3c2681
src/generic.jl
@@ -1758,7 +1758,7 @@ end
1758
"""
1759
reflectorApply!(x, τ, A)
1760
1761
-Multiplies `A` in-place by a Householder reflection on the left. It is equivalent to `A .= (I - conj(τ)*[1; x[2:end]]*[1; x[2:end]]')*A`.
+Multiplies `A` in-place by a Householder reflection on the left. It is equivalent to `A .= (I - [1; x[2:end]] * conj(τ) * [1; x[2:end]]') * A`.
1762
1763
@inline function reflectorApply!(x::AbstractVector, τ::Number, A::AbstractVecOrMat)
1764
require_one_based_indexing(x, A)
0 commit comments