Filter löschen
Filter löschen

How to get a loop to converge

1 Ansicht (letzte 30 Tage)
Ken
Ken am 23 Mär. 2022
Beantwortet: Torsten am 23 Mär. 2022
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?

Antworten (1)

Torsten
Torsten am 23 Mär. 2022
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)
?

Kategorien

Mehr zu Creating and Concatenating Matrices finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by