I am working on a financial system that uses BigDecimal to store values. I need to calculate covariance of two groups of data, but it seems that Java lacks libraries for statistical analysis. The library I'm using is Apache Common Math, which calculate covariance for double value instead of BigDecimal.
Just to check is there any alternatives for this library that accepts BigDecimal?
Thanks!