mljs / matrix

Matrix manipulation and computation library
https://mljs.github.io/matrix/
MIT License
353 stars 54 forks source link

is it implemented the `linear sum assignment problem' solver? #147

Closed jobo322 closed 2 years ago

jobo322 commented 2 years ago

@targos there is a nice feature that we need to search solvent multiple in nmr spectrum. linear sum assignment from scypy could be helpful to test this if it is not implemented yet.

targos commented 2 years ago

I don't know what it is

maasencioh commented 2 years ago

This is an optimization problem; therefore, I don't think it should be in this package. I think you could try to implement it using simplex, as they describe here.

jobo322 commented 2 years ago

@maasencioh many thanks I will implement it.