All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.psjava.formula.Average Maven / Gradle / Ivy

There is a newer version: 0.1.19
Show newest version
package org.psjava.formula;

import org.psjava.ds.Collection;
import org.psjava.ds.numbersystrem.DivisableNumberSystem;

public class Average {

	public static  T calc(Collection a, DivisableNumberSystem ns) {
		T sum = Sum.calc(ns, a);
		return ns.divide(sum, ns.getByInt(a.size()));
	}

	private Average() {
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy