com.meliorbis.numerics.function.Domain Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of Numerics Show documentation
Show all versions of Numerics Show documentation
A library for working with large multi-dimensional arrays and the functions they represent
/**
*
*/
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();
}