cern.colt.function.tfcomplex.FComplexFComplexFunction Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of parallelcolt Show documentation
Show all versions of parallelcolt Show documentation
Parallel Colt is a multithreaded version of Colt - a library for high performance scientific computing in Java. It contains efficient algorithms for data analysis, linear algebra, multi-dimensional arrays, Fourier transforms, statistics and histogramming.
The newest version!
package cern.colt.function.tfcomplex;
public interface FComplexFComplexFunction {
/**
* Applies a function to a complex argument.
*
* @param x
* an argument passed to the function.
*
* @return the result of the function.
*/
abstract public float[] apply(float[] x);
/**
* Applies a function to a complex argument.
*
* @param re
* real part of an argument passed to the function
* @param im
* imaginary part of an argument passed to the function
* @return the result of the function.
*/
abstract public float[] apply(float re, float im);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy