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

mikera.matrixx.algo.impl.Constants Maven / Gradle / Ivy

Go to download

Fast double-precision vector and matrix maths library for Java, supporting N-dimensional numeric arrays.

There is a newer version: 0.67.0
Show newest version
package mikera.matrixx.algo.impl;

public class Constants {

	private Constants(){}

	public static final double EPS;
	
	// Determine the machine epsilon
	// Tolerance is 10e1
	static {
		double eps = 1.0;
		while (1 + eps > 1) {
			eps = eps / 2;
		}
		EPS = eps * 10e1;
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy