ZUPT DETECTION ALGORITHM #113
-
In the above codes, attitude is equal to the mean of previous states, so I think index "i" is not in previous indexes. Then we should edited all indexes " :i " to: “:i-1”, such as below:
What is your opinion? @rodralez |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
Yes, it is. Hi, i have query for you, for real time implementation this INS which uC/uP is preferable. The uC/uP should have double precision floating point .. right..!? |
Beta Was this translation helpful? Give feedback.
-
The ZUPT algorithm calculates the mean of both attitude and position variables between the current inertial time ( |
Beta Was this translation helpful? Give feedback.
The ZUPT algorithm calculates the mean of both attitude and position variables between the current inertial time (
i
) and the past zupt window time (i-idz
), if the mean of the velocity is under a threshold (gnss.zupt_th
).