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

cern.colt.function.tdcomplex.DComplexDComplexDComplexFunction Maven / Gradle / Ivy

Go to download

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.tdcomplex;

public interface DComplexDComplexDComplexFunction {
    /**
     * Applies a function to two complex arguments.
     * 
     * @param x
     *            the first argument passed to the function.
     * @param y
     *            the second argument passed to the function.
     * 
     * @return the result of the function.
     */
    abstract public double[] apply(double[] x, double[] y);

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy