com.meliorbis.numerics.function.grid.RectangularGridFunction Maven / Gradle / Ivy
/**
*
*/
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();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy