photo

Youssef Ben Dhiab


Rice University

Attivo dal 2017

Followers: 0   Following: 0

Messaggio

Professional Interests: Vibration, dynamics and control, robotics

Statistica

  • Knowledgeable Level 1
  • First Answer

Visualizza badge

Feeds

Visto da

Risposto
Loop for function with summation up to N-1 and N
Try this : Vchain = 0; for i = 1:N-1 Vchain = Vchain + 0.5*D*((y(i)-y(i+1))^2 + (z(i)-z(i+1))^2) + g0*(m*z(i)); end Vchai...

oltre 6 anni fa | 0

Risposto
Robotics toolbox - why this error?
Hi Za Ka, You should specify what are your inputs: * [1, 1, 0, 0, 0, 0] is the mask vector 'mask' * [rad1, rad2] is the in...

oltre 6 anni fa | 2

| accettato

Risposto
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:
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 did...

oltre 6 anni fa | 0