我想知道这个方程的求解方法,我没求出来。

조회 수: 8 (최근 30일)
soyepe
soyepe 2022년 11월 16일
답변: heribin 2022년 11월 16일
这个是用MATLAB算出来的机器人逆向运动学的一个参数方程,但是我没求出来,大家可以帮我看看吗?谢谢大家,K1K2K3的数值一直在变,具体数值可以是K1=660,K2=0,K3=0, 我想知道这个方程的求解过程数值解和解析解都可以,困扰了我很久

채택된 답변

heribin
heribin 2022년 11월 16일
用matlab求解也不麻烦。
syms  e4 e5 e6
K1=50+410*cos(e4)*cos(e5)*sin(e6)+410*cos(e4)*sin(e5)*cos(e6)+200*cos(e4)*cos(e5);
K2=410*sin(e5)*sin(e6)-410*cos(e5)*cos(e6)+200*sin(e5);
K3=410*sin(e4)*cos(e5)*sin(e6)+410*sin(e4)*sin(e5)*cos(e6)+200*sin(e4)*cos(e5);
[e4 e5 e6]= solve(K1-660==0,K2==0,K3==0)

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!