com.meliorbis.numerics.function.MultiVariateVectorFunction 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;
/**
* Represents a mathematical function that accepts and returns multiple values
*/
public interface MultiVariateVectorFunction
{
/**
* Execute the function
*
* @param args_ The arguments to the function
*
* @return The value returned by the function
*/
public T[] call(@SuppressWarnings("unchecked") T... args_);
}