We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
環境依存の問題かもしれないが、STの変数prev_act_cogが初期化されず、この行の計算:
hrpsys-base/rtc/Stabilizer/Stabilizer.cpp
Line 856 in ea04aa7
Line 858 in ea04aa7
二回目以後のループではローパス通したあとのact_cogvelにnanがずっと入っており、この状態でST onにすると [st,JointPathEx] ERROR nan/inf is found が表示されます。 以下のように初期化したらこの問題を回避できます。
prev_act_cog = hrp::Vector3::Zero();
この初期化はいりませんでしょうか? よろしくお願いします
The text was updated successfully, but these errors were encountered:
No branches or pull requests
環境依存の問題かもしれないが、STの変数prev_act_cogが初期化されず、この行の計算:
hrpsys-base/rtc/Stabilizer/Stabilizer.cpp
Line 856 in ea04aa7
自分の環境だと一回目のループにおいてここでで計算されたact_cogvelの要素にnanが入ってしまいます。
次にローパス通したあとのact_cogvelにもnanが入ってしまいます。
hrpsys-base/rtc/Stabilizer/Stabilizer.cpp
Line 858 in ea04aa7
二回目以後のループではローパス通したあとのact_cogvelにnanがずっと入っており、この状態でST onにすると
[st,JointPathEx] ERROR nan/inf is found
が表示されます。
以下のように初期化したらこの問題を回避できます。
この初期化はいりませんでしょうか?
よろしくお願いします
The text was updated successfully, but these errors were encountered: