Skip to content

Commit

Permalink
Fix doctests after factorization internals unexport. (#45943)
Browse files Browse the repository at this point in the history
  • Loading branch information
maleadt authored Jul 6, 2022
1 parent 7a21d52 commit c5aa255
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions stdlib/LinearAlgebra/src/qr.jl
Original file line number Diff line number Diff line change
Expand Up @@ -314,9 +314,9 @@ julia> a = [1. 2.; 3. 4.]
3.0 4.0
julia> qr!(a)
QRCompactWY{Float64, Matrix{Float64}, Matrix{Float64}}
LinearAlgebra.QRCompactWY{Float64, Matrix{Float64}, Matrix{Float64}}
Q factor:
2×2 QRCompactWYQ{Float64, Matrix{Float64}, Matrix{Float64}}:
2×2 LinearAlgebra.QRCompactWYQ{Float64, Matrix{Float64}, Matrix{Float64}}:
-0.316228 -0.948683
-0.948683 0.316228
R factor:
Expand Down Expand Up @@ -401,9 +401,9 @@ julia> A = [3.0 -6.0; 4.0 -8.0; 0.0 1.0]
0.0 1.0
julia> F = qr(A)
QRCompactWY{Float64, Matrix{Float64}, Matrix{Float64}}
LinearAlgebra.QRCompactWY{Float64, Matrix{Float64}, Matrix{Float64}}
Q factor:
3×3 QRCompactWYQ{Float64, Matrix{Float64}, Matrix{Float64}}:
3×3 LinearAlgebra.QRCompactWYQ{Float64, Matrix{Float64}, Matrix{Float64}}:
-0.6 0.0 0.8
-0.8 0.0 -0.6
0.0 -1.0 0.0
Expand Down

0 comments on commit c5aa255

Please sign in to comment.