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

hex.pca.PCAImplementation Maven / Gradle / Ivy

There is a newer version: 3.46.0.6
Show newest version
package hex.pca;

public enum PCAImplementation {
	MTJ_EVD_DENSEMATRIX, MTJ_EVD_SYMMMATRIX, MTJ_SVD_DENSEMATRIX, JAMA;
  final static PCAImplementation fastestImplementation = MTJ_EVD_SYMMMATRIX;    // set to the fastest implementation
  
  public static PCAImplementation getFastestImplementation() {
    return fastestImplementation;
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy