Package newExamples

Examples of newExamples.FitResults


    // Covariances and errors
    double[]   fitErrors     = optimizer.guessParametersErrors();
    double[][] fitCovariance = optimizer.getCovariances();
   
    // Output values
    FitResults fitResults = new FitResults(
        optimum.getValue(), optimum.getPoint(), fitErrors, fitCovariance);

    /*
    System.out.printf("Inclination angle [rad]: %15.7e +- %15.7e\n",
        fitResults.getVariables()[0], fitResults.getErrors()[0]);   
View Full Code Here

TOP

Related Classes of newExamples.FitResults

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.