23 #ifndef UTILS_TIME_SERIES_SE2_H_ 24 #define UTILS_TIME_SERIES_SE2_H_ 53 using Ptr = std::shared_ptr<TimeSeriesSE2>;
54 using ConstPtr = std::shared_ptr<const TimeSeriesSE2>;
93 #endif // UTILS_TIME_SERIES_SE2_H_
std::vector< double > values
Time Series with SE2 support.
void computeMeanCwise(Eigen::Ref< Eigen::VectorXd > mean_values) override
Compute and return the component-wise mean values.
TimeSeriesSE2()=default
Default constructor.
double computeMeanOverall() override
Compute and return the mean value of all values among all dimensions.
std::shared_ptr< TimeSeries > Ptr
std::shared_ptr< const TimeSeries > ConstPtr
bool getValuesInterpolate(double time, Eigen::Ref< Eigen::VectorXd > values, Interpolation interpolation=Interpolation::Linear, Extrapolation extrapolate=Extrapolation::NoExtrapolation, double tolerance=1e-6) const override
Retrieve value vector at a desired time stamp (seconds) via interpolation.
TimeSeriesSE2(int value_dim)
Construct empty time series with a dresired value vector dimension.