rust-ndarray / ndarray-stats

Statistical routines for ndarray
https://docs.rs/ndarray-stats
Apache License 2.0
201 stars 25 forks source link

Remove `Sort1dExt` in favor of `SliceExt`. #92

Open n3vu0r opened 1 year ago

n3vu0r commented 1 year ago

Reduces worst-case complexity from O(n²) to O(n log(n)) by using ndarray-slice.

n3vu0r commented 1 year ago

Resolves #64, #72, and #86.