Examples of CDA


Examples of jmprojection.CDA

    if (yAxisDimension > numComponents)
      numComponents = yAxisDimension;

    // Scale data and do CDA
    Preprocess.scaleToUnityVariance(rawData);
    CDA cdaProj = new CDA(rawData);
    cdaProj.iterate(100);

    if (status == TaskStatus.CANCELED)
      return;

    double[][] result = cdaProj.getState();

    if (status == TaskStatus.CANCELED)
      return;

    component1Coords = result[xAxisDimension - 1];
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.