12 : window_size_(window_size),
15 window_(Eigen::Matrix<double, dims, Eigen::Dynamic>::Zero(dims, window_size)) {
16 if (window_size <= 0)
throw std::invalid_argument(
"Window size must be positive.");
21 void add(
const Eigen::Vector<double, dims>& value) {
22 window_.col(current_index_) = value;
23 current_index_ = (current_index_ + 1) % window_size_;
24 if (current_size_ < window_size_) ++current_size_;
28 Eigen::Vector<double, dims> median;
30 for (
size_t d = 0; d < dims; ++d) {
31 Eigen::VectorXd values = window_.row(d).head(current_size_).transpose();
32 std::nth_element(values.data(), values.data() + current_size_ / 2, values.data() + current_size_);
33 median(d) = values(current_size_ / 2);
39 Eigen::Vector<double, dims>
operator()(
const Eigen::Vector<double, dims>& value) {
46 size_t current_index_;
48 Eigen::Matrix<double, dims, Eigen::Dynamic> window_;
Definition dynamics_limit.cpp:8