public interface MinMaxProblem<T>
extends java.io.Serializable
| Modifier and Type | Method and Description |
|---|---|
RealScalarFunction |
error(T omega)
e(x, ω) is the error function, or the minmax objective, for a given ω.
|
java.util.List<T> |
getOmega()
Get the list of omegas, the domain.
|
RealVectorFunction |
gradient(T omega)
g(x, ω) = ∇|e(x, ω)| is the gradient function of the absolute error, |e(x, ω)|, for a given ω.
|
RealScalarFunction error(T omega)
omega - a parameterization of a real scalar functionRealVectorFunction gradient(T omega)
omega - a parameterization of a real scalar functionjava.util.List<T> getOmega()