rleonid / oml

OCaml Math Library
Apache License 2.0
119 stars 9 forks source link

Matrix Determinant #176

Closed jparsert closed 7 years ago

jparsert commented 7 years ago

I did not see any determinant function. Any objection to my adding one?

rleonid commented 7 years ago

Yes, there is no determinant function in the Matrix module and a pure OCaml contribution is warmly welcome.

But if you're looking to get something working now, there is a driver over lacaml in the determinant_symmetric and more general determinant method in the Lacaml_util.ml module.

rleonid commented 7 years ago

@fourtytwo I'm curious, what did you end up using? What is your use case?

jparsert commented 7 years ago

@rleonid I used the one you pointed to... but i intend to write a pure ocaml version once i have more time.