com.meliorbis.numerics.function.grid.RectangularGridFunction 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.grid;
import com.meliorbis.numerics.function.Function;
/**
* A function defined on a rectangular grid of points, which is interpolated
* to find values at points not lying on the grid
*
* @author Tobias Grasl
*
* @param The input value type
* @param The output value type
* @param The type of array used to hold multiple output values
*/
public interface RectangularGridFunction extends Function
{
OA getValues();
}