Interface IGradientFunction
-
- All Known Implementing Classes:
BlackBoxGradient
public interface IGradientFunctionRepresents the gradient of a function that is differentiable.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.api4.java.common.math.IVectorapply(org.api4.java.common.math.IVector vector)Returns the result of applying the gradient to the point represented by the given vector.
-
-
-
Method Detail
-
apply
org.api4.java.common.math.IVector apply(org.api4.java.common.math.IVector vector)
Returns the result of applying the gradient to the point represented by the given vector.- Parameters:
vector- the vector the gradient is applied to- Returns:
- the new vector resulting from applying the gradient to the given vector
-
-