You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Save current measurements
Vector3f prevDelAng = correctedDelAng;
// Apply corrections for earths rotation rate and coning errors
// * and + operators have been overloaded
correctedDelAng = correctedDelAng - Tnb*earthRateNED*dtIMU + 8.333333333333333e-2f*(prevDelAng % correctedDelAng);
the cross product prevDelAng % correctedDelAng will always be zero as they have the same value
The text was updated successfully, but these errors were encountered:
In the code:
the cross product
prevDelAng % correctedDelAng
will always be zero as they have the same valueThe text was updated successfully, but these errors were encountered: