Open
Description
Hi guys, I'm trying to use .quantile_mut() on a 1D array of f64 numbers. I'm getting this error:
the trait bound `f64: std::cmp::Ord` is not satisfied
the trait `std::cmp::Ord` is not implemented for `f64
I have a few questions:
- Which type will work? It's not clear from the docs.
- Is there a reason for using the noisy float for the number between 0-1? If the function errors when it's not between 0-1, wouldnt a normal float work?