Package jmt.engine.math

Examples of jmt.engine.math.SampleMeanVar


   */
  @Override
  protected void calcVar() {
    double[] C;
    double[] tempBatch = new double[numBatch];
    double sampleVar = (new SampleMeanVar(batchMean)).getVar();
    K = numBatch / 4;
    C = calcConstants(K, polyOrder);
    C1 = C[0];
    C2 = (int) C[1];
    //DEK (Federico Granata)
View Full Code Here

TOP

Related Classes of jmt.engine.math.SampleMeanVar

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.