35 double tolerance)
const 37 if (
_time.empty())
return false;
39 auto it = std::find_if(
_time.begin(),
_time.end(), [time](
double val) {
return val >= time; });
40 if (it ==
_time.end())
42 switch (extrapolation)
55 PRINT_ERROR(
"TimeSeries::valuesInterpolate(): desired extrapolation method not implemented.");
62 int idx = (
int)std::distance(
_time.begin(), it);
64 if (std::abs(time -
_time[idx]) < tolerance)
72 PRINT_ERROR(
"accessing a time idx in the past which is not this time series");
75 double dt = time -
_time[idx - 1];
78 switch (interpolation)
94 double dt_data = _time[idx] - _time[idx - 1];
95 double dt_frac = dt / dt_data;
98 if (values.size() > 2)
107 PRINT_ERROR(
"TimeSeries::valuesInterpolate(): desired interpolation method not implemented.");
125 PRINT_ERROR(
"TimeSeries::computeMeanCwise(): provided mean_values vector does not match value dimension");
#define PRINT_ERROR_NAMED(msg)
std::vector< double > _time
#define PRINT_ERROR_COND_NAMED(cond, msg)
int getValueDimension() const
void computeMeanCwise(Eigen::Ref< Eigen::VectorXd > mean_values) override
Compute and return the component-wise mean values.
double interpolate_angle(double angle1, double angle2, double factor)
Return the interpolated angle between two angles [rad].
int getTimeDimension() const
ValuesMatConstMap getValuesMatrixView() const
double computeMeanOverall() override
Compute and return the mean value of all values among all dimensions.
Eigen::Map< const Eigen::VectorXd > getValuesMap(int time_idx) const
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.