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 0905f7c commit aac65c2Copy full SHA for aac65c2
stdlib/LinearAlgebra/src/lu.jl
@@ -31,12 +31,12 @@ julia> F = lu(A)
31
LU{Float64,Array{Float64,2}}
32
L factor:
33
2×2 Array{Float64,2}:
34
- 1.0 0.0
35
- 1.5 1.0
+ 1.0 0.0
+ 0.666667 1.0
36
U factor:
37
38
- 4.0 3.0
39
- 0.0 -1.5
+ 6.0 3.0
+ 0.0 1.0
40
41
julia> F.L * F.U == A[F.p, :]
42
true
@@ -251,12 +251,12 @@ julia> F = lu(A)
251
252
253
254
255
256
257
258
259
260
261
262
0 commit comments