net.maizegenetics.matrixalgebra.decomposition.EigenvalueDecomposition Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tassel Show documentation
Show all versions of tassel Show documentation
TASSEL is a software package to evaluate traits associations, evolutionary patterns, and linkage
disequilibrium.
package net.maizegenetics.matrixalgebra.decomposition;
import net.maizegenetics.matrixalgebra.Matrix.DoubleMatrix;
public interface EigenvalueDecomposition {
double[] getEigenvalues();
double getEigenvalue(int i);
DoubleMatrix getEigenvectors();
DoubleMatrix getEigenvalueMatrix();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy