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
firstly, thanks for this great work! recently, i read imu initialized codes, i find some questions likes here, take an example
A.block<3, 3>(i * 6, 0) = -0.5 * delta.t * delta.t * matrix<3>::Identity();
i think it should be
A.block<3, 3>(i * 6, 0) += -0.5 * delta.t * delta.t * matrix<3>::Identity();
do i miss some parts?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
firstly, thanks for this great work!
recently, i read imu initialized codes, i find some questions
likes here, take an example
i think it should be
do i miss some parts?
The text was updated successfully, but these errors were encountered: