import com.enterprisemath.math.stat.Statistics;
public class MathExample {
public static void main(String[] args) {
double[] data = {1.2, 2.1, 3.4, 5.6, 7.8};
double mean = Statistics.mean(data);
}
}
<dependencies>
<dependency>
<groupId>com.enterprisemath</groupId>
<artifactId>enterprisemath-math</artifactId>
<version>1.0.0</version>
</dependency>
</dependencies>