Skip to content

Commit

Permalink
AP_NavEKF: Change misnomer (NFC)
Browse files Browse the repository at this point in the history
  • Loading branch information
muramura authored and peterbarker committed Mar 19, 2021
1 parent a5b6ce9 commit 0536be1
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
states(1:3) = 0;
states = states - Kfusion * innovation;

% the first 3 states represent the angular misalignment vector. This is
% is used to correct the estimate quaternion
% the first 3 states represent the angular misalignment vector.
% This is used to correct the estimate quaternion
% Convert the error rotation vector to its equivalent quaternion
% error = truth - estimate
rotationMag = sqrt(states(1)^2 + states(2)^2 + states(3)^2);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
% Store tilt error estimate for external monitoring
angErrVec = angErrVec + states(1:3);

% the first 3 states represent the angular misalignment vector. This is
% is used to correct the estimated quaternion
% the first 3 states represent the angular misalignment vector.
% This is used to correct the estimated quaternion
% Convert the error rotation vector to its equivalent quaternion
% truth = estimate + error
rotationMag = sqrt(states(1)^2 + states(2)^2 + states(3)^2);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,8 +48,8 @@
states(1:3) = 0;
states = states - Kfusion * innovation;

% the first 3 states represent the angular misalignment vector. This is
% is used to correct the estimate quaternion
% the first 3 states represent the angular misalignment vector.
% This is used to correct the estimate quaternion
% Convert the error rotation vector to its equivalent quaternion
% error = truth - estimate
rotationMag = sqrt(states(1)^2 + states(2)^2 + states(3)^2);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,8 +37,8 @@
% Store tilt error estimate for external monitoring
angErrVec = angErrVec + states(1:3);

% the first 3 states represent the angular misalignment vector. This is
% is used to correct the estimated quaternion
% the first 3 states represent the angular misalignment vector.
% This is used to correct the estimated quaternion
% Convert the error rotation vector to its equivalent quaternion
% truth = estimate + error
rotationMag = sqrt(states(1)^2 + states(2)^2 + states(3)^2);
Expand Down

0 comments on commit 0536be1

Please sign in to comment.