Package org.orekit.time
Interface TimeVectorFunction
-
public interface TimeVectorFunction
This interface represents a multi-valued 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>>
T[]value(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 field elements- Parameters:
date
- date- Returns:
- value of the function
-
-