|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
public interface RealVectorFunction
This interface represents a Rn → Rm function,
[y0, y1, y2, ...] = f(x0, x1, ..., xn)
The function takes n real arguments and output m real values in the form of a Vector.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from interface com.numericalmethod.suanshu.analysis.function.Function |
|---|
Function.EvaluationException |
| Method Summary | |
|---|---|
Vector |
evaluate(double... x)
A real function, f, takes a double array double[],
{x0, x1, ..., xn}
and maps it to a Vector,
f(x0, x1, ..., xn) |
| Methods inherited from interface com.numericalmethod.suanshu.analysis.function.Function |
|---|
dimension4Domain, dimension4Range |
| Method Detail |
|---|
Vector evaluate(double... x)
f, takes a double array double[],
and maps it to a{x0,x1, ...,xn}
Vector,
f(x0, x1, ..., xn)
x - {x} = {x0, x1, ... xn}
f({x}) = f(x0, x1, ... xn) as output
|
SuanShu, a Java numerical and statistical library | |||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||