Tabnine Logo
RiddersSolver.<init>
Code IndexAdd Tabnine to your IDE (free)

How to use
org.apache.commons.math3.analysis.solvers.RiddersSolver
constructor

Best Java code snippets using org.apache.commons.math3.analysis.solvers.RiddersSolver.<init> (Showing top 3 results out of 315)

origin: OpenGamma/Strata

/**
 * @param functionValueAccuracy The accuracy of the function evaluations.
 */
public RidderSingleRootFinder(double functionValueAccuracy) {
 _ridder = new RiddersSolver(functionValueAccuracy);
}
origin: OpenGamma/Strata

/**
 * @param functionValueAccuracy The accuracy of the function evaluations.
 * @param absoluteAccurary The maximum absolute error of the variable.
 */
public RidderSingleRootFinder(double functionValueAccuracy, double absoluteAccurary) {
 _ridder = new RiddersSolver(functionValueAccuracy, absoluteAccurary);
}
origin: org.appdapter/ext.bundle.math.symja_jas

  solver = new MullerSolver();
} else if (method.equals("Ridders")) {
  solver = new RiddersSolver();
} else if (method.equals("Secant")) {
  solver = new SecantSolver();
org.apache.commons.math3.analysis.solversRiddersSolver<init>

Javadoc

Construct a solver with default accuracy (1e-6).

Popular methods of RiddersSolver

  • computeObjectiveValue
  • getAbsoluteAccuracy
  • getFunctionValueAccuracy
  • getMax
  • getMin
  • getRelativeAccuracy
  • verifyBracketing
  • solve

Popular in Java

  • Creating JSON documents from java classes using gson
  • compareTo (BigDecimal)
  • getResourceAsStream (ClassLoader)
  • setContentView (Activity)
  • FileInputStream (java.io)
    An input stream that reads bytes from a file. File file = ...finally if (in != null) in.clos
  • Runnable (java.lang)
    Represents a command that can be executed. Often used to run code in a different Thread.
  • Charset (java.nio.charset)
    A charset is a named mapping between Unicode characters and byte sequences. Every Charset can decode
  • ArrayList (java.util)
    ArrayList is an implementation of List, backed by an array. All optional operations including adding
  • SortedSet (java.util)
    SortedSet is a Set which iterates over its elements in a sorted order. The order is determined eithe
  • Collectors (java.util.stream)
  • Best plugins for Eclipse
Tabnine Logo
  • Products

    Search for Java codeSearch for JavaScript code
  • IDE Plugins

    IntelliJ IDEAWebStormVisual StudioAndroid StudioEclipseVisual Studio CodePyCharmSublime TextPhpStormVimGoLandRubyMineEmacsJupyter NotebookJupyter LabRiderDataGripAppCode
  • Company

    About UsContact UsCareers
  • Resources

    FAQBlogTabnine AcademyTerms of usePrivacy policyJava Code IndexJavascript Code Index
Get Tabnine for your IDE now