Package com.mockturtlesolutions.snifflib.stats

Examples of com.mockturtlesolutions.snifflib.stats.Max.run()


      DataSet minpH = m.getResult();
      DblMatrix min = new DblMatrix((Double)minpH.getValueAt(0,1));

      Max mx = new Max(this.outSet);
      mx.addResponseVariable("pH");
      mx.run();
      DataSet maxpH = mx.getResult();
      DblMatrix max = new DblMatrix((Double)maxpH.getValueAt(0,1));

      // Get widest range based on lpreg's internal data and the current data.
      //Yes, those two data sets may be different after some time!
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.