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

nl.tno.bim.nmd.scaling.NmdPowerScaler Maven / Gradle / Ivy

The newest version!
package nl.tno.bim.nmd.scaling;


public class NmdPowerScaler extends NmdBaseScaler implements NmdScaler {

	public NmdPowerScaler(String scaleUnit, Double[] coefficients, Double[] bounds, Double[] currentValues) {
		super(scaleUnit, coefficients, bounds, currentValues);
	}

	@Override 
	protected Double calculate(Double x) {
		return coefficients[0] * Math.pow(x, coefficients[1]) + coefficients[2];
	}
	
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy