How to get a loop to converge
조회 수: 1 (최근 30일)
이전 댓글 표시
I am trying to get a loop to converge in Inverse Kinematics. I use this line:
dq=pinv(J_BF_inB(q*b));
where J_BF_inB is a 3X3 matrix and
q, b are 3X1 Matrices
I get error:
Not enough input arguments.
Any suggestions ow to correct?
댓글 수: 0
답변 (1개)
Torsten
2022년 3월 23일
And what do you want to get with
J_BF_inB(q*b)
?
q*b at the first place is undefined. And even if it were defined, what is Matrix(Matrix) ?
Maybe you just mean
dq = pinv(J_BF_inB)
?
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!