Open
Description
In https://github.com/MRASL/mrasl_mav_traj/blob/master/src/mrasl_mav_traj/TrajectoryGenerator.cpp#L436
// Departure constraint
double int_t = 1 / std::pow(t_next - t_now, der);
polynomial = coeffs.row(der).cwiseProduct(I.row(der)) * int_t_prev;
The wrong coefficient is used, should be int_t
instead of int_t_prev
. Unclear how this did not visibly affect the results?