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

com.meliorbis.numerics.function.grid.RectangularGridFunction 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.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 - 2024 Weber Informatics LLC | Privacy Policy