15 #ifndef NAV2_MPPI_CONTROLLER__MODELS__CONTROL_SEQUENCE_HPP_
16 #define NAV2_MPPI_CONTROLLER__MODELS__CONTROL_SEQUENCE_HPP_
18 #include <xtensor/xtensor.hpp>
20 namespace mppi::models
38 xt::xtensor<float, 1> vx;
39 xt::xtensor<float, 1> vy;
40 xt::xtensor<float, 1> wz;
42 void reset(
unsigned int time_steps)
44 vx = xt::zeros<float>({time_steps});
45 vy = xt::zeros<float>({time_steps});
46 wz = xt::zeros<float>({time_steps});
A control sequence over time (e.g. trajectory)