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

com.meliorbis.numerics.function.Domain Maven / Gradle / Ivy

Go to download

A library for working with large multi-dimensional arrays and the functions they represent

There is a newer version: 1.2
Show newest version
/**
 * 
 */
package com.meliorbis.numerics.function;

/**
 * The domain over which a function is defined
 * 
 * @param  The type of number of the domain 
 * 
 * @author Tobias Grasl
 */
public interface Domain
{
	/**
	 * @return The number of dimensions
	 */
	int getNumberOfDimensions();
}