We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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?
int_t
int_t_prev
The text was updated successfully, but these errors were encountered:
andre-nguyen
No branches or pull requests
In https://github.com/MRASL/mrasl_mav_traj/blob/master/src/mrasl_mav_traj/TrajectoryGenerator.cpp#L436
The wrong coefficient is used, should be
int_t
instead ofint_t_prev
. Unclear how this did not visibly affect the results?The text was updated successfully, but these errors were encountered: