public static enum Dfdx.Method extends Enum<Dfdx.Method>
| Enum Constant and Description |
|---|
FINITE_DIFFERENCE
Finite difference: approximate a derivative using grid points.
|
RIDDERS
Ridders' method: try a sequence of decreasing increments to the compute derivative, and then extrapolate to zero using Neville's algorithm.
|
| Modifier and Type | Method and Description |
|---|---|
static Dfdx.Method |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Dfdx.Method[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Dfdx.Method FINITE_DIFFERENCE
FiniteDifferencepublic static final Dfdx.Method RIDDERS
Ridderspublic static Dfdx.Method[] values()
for (Dfdx.Method c : Dfdx.Method.values()) System.out.println(c);
public static Dfdx.Method valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2010-2020 NM FinTech Ltd.. All Rights Reserved.