public class ExponentialTension extends R1ToR1
| Constructor and Description |
|---|
ExponentialTension(double dblBase,
double dblTension)
ExponentialTension constructor
|
| Modifier and Type | Method and Description |
|---|---|
double |
derivative(double dblVariate,
int iOrder)
Calculate the derivative as a double
|
double |
evaluate(double dblVariate)
Evaluate for the given variate
|
double |
getBase()
Retrieve the Base
|
double |
getTension()
Retrieve the Tension Parameter
|
double |
integrate(double dblBegin,
double dblEnd)
Integrate over the given range
|
boolean |
isBaseNatural()
Is the base natural?
|
static void |
main(java.lang.String[] astrArgs) |
differential, differential, maxima, maxima, minima, minimapublic ExponentialTension(double dblBase,
double dblTension)
throws java.lang.Exception
dblBase - Base of the ExponentialTension FunctiondblTension - Tension of the ExponentialTension Functionjava.lang.Exception - Thrown if the input is invalidpublic double evaluate(double dblVariate)
throws java.lang.Exception
R1ToR1public double derivative(double dblVariate,
int iOrder)
throws java.lang.Exception
R1ToR1derivative in class R1ToR1dblVariate - Variate at which the derivative is to be calculatediOrder - Order of the derivative to be computedjava.lang.Exception - Thrown if Inputs are Invalidpublic double integrate(double dblBegin,
double dblEnd)
throws java.lang.Exception
R1ToR1public boolean isBaseNatural()
public double getBase()
public double getTension()
public static final void main(java.lang.String[] astrArgs)
throws java.lang.Exception
java.lang.Exception