VikSa666 / math-rs

A mathematical library
0 stars 0 forks source link

Implement the LU decomposition #18

Open VikSa666 opened 12 months ago

VikSa666 commented 12 months ago

Implement the algorithm of LU decomposition.

Given a matrix, it should return a pair of matrices (L, U)

Also implement the determinant using this decomposition.