You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A suggestion for src/arraymancer/linear_algebra/decomposition.nim: Seems that the computation of the determinant of a matrix is missing so far. It could be easily achieved by means of the LU-decomposition, as the determinant is just the product of the diagonal elements of the matrix U - up to the sign! Therefore it would be very helpful to give out also the number of permutations or at least the pivot_indices vector. (Of course I am talking about proc lu_permuted; in the current stage it is a bit cumbersome to determine the number of permutations from the output.)
The text was updated successfully, but these errors were encountered:
A suggestion for src/arraymancer/linear_algebra/decomposition.nim: Seems that the computation of the determinant of a matrix is missing so far. It could be easily achieved by means of the LU-decomposition, as the determinant is just the product of the diagonal elements of the matrix U - up to the sign! Therefore it would be very helpful to give out also the number of permutations or at least the pivot_indices vector. (Of course I am talking about proc lu_permuted; in the current stage it is a bit cumbersome to determine the number of permutations from the output.)
The text was updated successfully, but these errors were encountered: