Examples of scaleZScores()


Examples of util.Gaussian.scaleZScores()

   
    Gaussian g = new Gaussian(zscores);
   
    for (int x=0; x < zscores.length; x++) zscores[x] *= scale;
   
    g.scaleZScores(scale);
   
    assert( Util.compareArraysByValue(g.getPDF(),zscores));
  }

  @Test
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.