I have a set of nonlinear equations (run by rk4 method). How can I compute the Jacobian for those?
4 views (last 30 days)
Show older comments
ASMA
on 26 Feb 2020
Answered: Benjamin Großmann
on 26 Feb 2020
The nonlinear equations give attitude quaternion and angular velocity of small satellite.
How may I compute the Jacobian matrices to use in a Kalman filter?
Accepted Answer
Benjamin Großmann
on 26 Feb 2020
Assume you have the set of nonlinear eqations and the vector of independent variables defined in Matlab, then you can use the jacobian function to compute the jacobian matrices, e.g.
clearvars, close all
clc
% the variables
x = sym('x',[3,1]);
% some random functions
f = [x(1)^2 + x(2); ...
sin(x(3)); ...
cos(x(1) + x(2))];
% jacobian calculation
J = jacobian(f,x);
0 Comments
More Answers (0)
See Also
Categories
Find more on Satellite and Orbital Mechanics in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!