Package jmt.engine.jwat.fitting

Examples of jmt.engine.jwat.fitting.ExponentialFitting


      public void onSetMatrixObservation() {
       
        obslist = model.getListObservations();
       
        if(distribution == EXPO) {
          engfitting = new ExponentialFitting(obslist, 0.05d);
          initComponents();
          if(engfitting.isFitted()) {
            if(obslist.length > 20)
              resultfittingTextArea.setText("The analyzed data fits the exponential distribution with significativity 0.05" + "\n" +
                  "(the significativity is the probability of rejecting the Exponential hypothesis when it is true)" + "\n" +
View Full Code Here

TOP

Related Classes of jmt.engine.jwat.fitting.ExponentialFitting

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.