Skip to content
New issue

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

IESKF收敛判断 #2

Closed
Awaker1 opened this issue Sep 5, 2023 · 1 comment
Closed

IESKF收敛判断 #2

Awaker1 opened this issue Sep 5, 2023 · 1 comment

Comments

@Awaker1
Copy link

Awaker1 commented Sep 5, 2023

converge = true;
for (int idx = 0; idx < 18; idx++) {
if (update_x(i, 0) > 0.001) {
converge = false;
break;
}
}

请问在这里对迭代收敛判断中,以idx为索引进行18次循环,但是判断的都是同一个值,是否存在某些问题?
以我粗浅的理解,这里是否是要对所有状态量的迭代增量进行判断呢?

@mengkai98
Copy link
Owner

是有这样一个问题,我已经在1-7中修复了这个错误(* ̄︶ ̄)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants