Interface ParametricModelEffect
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface ParametricModelEffect
Functional interface for parametric models.- Since:
- 11.2
- Author:
- Luc Maisonobe
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
evaluate(GroundStation station, SpacecraftState state)
Evaluate the parametric model effect.
-
-
-
Method Detail
-
evaluate
double evaluate(GroundStation station, SpacecraftState state)
Evaluate the parametric model effect.- Parameters:
station
- stationstate
- spacecraft state- Returns:
- the measurement error due to parametric model
-
-