-
-
Notifications
You must be signed in to change notification settings - Fork 38
Closed
Description
Hello everyone,
Recently I need to do the LU factorization "in-place" for a matrix.
I know function with ! will represent the "in-place" case but the result (in type of LU) looks to not be store in the original matrix.
Here a MWE :
using LinearAlgebra
function main()
A = rand(10, 10)
println(A)
lu!(A, NoPivot())
println("LU factorization of A:")
println(A)
end
main()
The matrix A is the same at the end.
Best regard,
Metadata
Metadata
Assignees
Labels
No labels