Filter löschen
Filter löschen

helo, i am working on a simple 2 DOF robot. Even though I am using the masking vector as [ 1 1 0 0 0 0 ], I am getting error stating: Number of robot DOF must be >= the same number of 1s in the mask matrix This is my 2 DOF robot:

3 Ansichten (letzte 30 Tage)
L(1) = Link([0, 0, 123, 0], 'R');
L(2) = Link([0, 0, 157, 0], 'R');
x1 = 45;
x2 = 64;
rad1 = x1 * pi/180;
rad2 = x2 * pi/180;
R = SerialLink(L, 'name', 'two link');
R.plot([rad1, rad2])
R.teach();
Td = transl([0.2, 0.3, -0.4,])
I = R.ikine(Td, [0, 0], [1, 1, 0, 0, 0, 0])

Antworten (1)

Youssef Ben Dhiab
Youssef Ben Dhiab am 28 Nov. 2017
Hi Za Ka, Change the last line like that : I = R.ikine(Td, 'q0', [0, 0], 'mask',[1, 1, 0, 0, 0, 0]) It should work. If it didn't you have to change the initial pose [0, 0] by some other values like [pi/2, pi] so that it can converge after less than 1000 iterations.

Kategorien

Mehr zu Robotics 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