Please I am working on gait planning but I hwve to determine the position angles

2 ビュー (過去 30 日間)
Eric Andoh
Eric Andoh 2022 年 6 月 30 日
回答済み: Sam Chak 2022 年 6 月 30 日
Please I need help or programming code to determine the position angles

採用された回答

Sam Chak
Sam Chak 2022 年 6 月 30 日
Perhaps you can try fitting that using the Sum of Sines Model.
load gait.mat;
f1 = fit(time, theta1, 'sin6')
f2 = fit(time, theta2, 'sin6')
plot(f1, time, theta1), hold on
plot(f2, time, theta2), hold off

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeRobotics についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by