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
The model for 1D-projectile motion is the following:
x_(k+1) = x_k + v_k * dt + 0.5 * a_k * dt^2 v_(k+1) = v_k + a_k * dt a_(k+1) = a_k
that in matrix from is the following:
1 dt 0.5*dt^2 0 1 dt 0 0 1
That is different from the matrix implemented in the example
// Discrete LTI projectile motion, measuring position only A << 1, dt, 0, 0, 1, dt, 0, 0, 1;
The text was updated successfully, but these errors were encountered:
I agree with you. they really need to address that.
Sorry, something went wrong.
any news @hmartiro ?
No branches or pull requests
The model for 1D-projectile motion is the following:
that in matrix from is the following:
That is different from the matrix implemented in the example
The text was updated successfully, but these errors were encountered: