|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.apache.commons.math.analysis.function.Logistic.Parametric
public static class Logistic.Parametric
Parametric function where the input array contains the parameters of the logit function, ordered as follows:
| Constructor Summary | |
|---|---|
Logistic.Parametric()
|
|
| Method Summary | |
|---|---|
double[] |
gradient(double x,
double... param)
Computes the value of the gradient at x. |
double |
value(double x,
double... param)
Computes the value of the sigmoid at x. |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
public Logistic.Parametric()
| Method Detail |
|---|
public double value(double x,
double... param)
x.
value in interface ParametricUnivariateRealFunctionx - Value for which the function must be computed.param - Values for k, m, b, q,
a and n.
NullArgumentException - if param is null.
DimensionMismatchException - if the size of param is
not 6.
public double[] gradient(double x,
double... param)
x.
The components of the gradient vector are the partial
derivatives of the function with respect to each of the
parameters.
gradient in interface ParametricUnivariateRealFunctionx - Value at which the gradient must be computed.param - Values for k, m, b, q,
a and n.
x.
NullArgumentException - if param is null.
DimensionMismatchException - if the size of param is
not 6.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||