Package jmt.engine.jwat

Examples of jmt.engine.jwat.StatBivariate


    return names.length;
  }

  public Object getValueAt(int rowIndex, int columnIndex) {
    if (matrix != null) {
      StatBivariate b = matrix.getBivStatObj();

      if (rowIndex == columnIndex) {
        return null;
      }
      return defaultFormat.format(b.getCovariance(rowIndex, columnIndex));
    }
    return null;
  }
View Full Code Here

TOP

Related Classes of jmt.engine.jwat.StatBivariate

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.