Package org.orekit.time
Interface TimeScalarFunction
-
public interface TimeScalarFunction
This interface represents a scalar function of time.- Author:
- Luc Maisonobe
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
value(AbsoluteDate date)
Compute a function of time.<T extends CalculusFieldElement<T>>
Tvalue(FieldAbsoluteDate<T> date)
Compute a function of time.
-
-
-
Method Detail
-
value
double value(AbsoluteDate date)
Compute a function of time.- Parameters:
date
- date- Returns:
- value of the function
-
value
<T extends CalculusFieldElement<T>> T value(FieldAbsoluteDate<T> date)
Compute a function of time.- Type Parameters:
T
- type of the filed elements- Parameters:
date
- date- Returns:
- value of the function
-
-