Package jmprojection

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

Related Classes of jmprojection.CDA

Copyright © 2018 www.massapicom. 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.