photo

Youssef Ben Dhiab


Rice University

自 2017 起处于活动状态

Followers: 0   Following: 0

消息

Professional Interests: Vibration, dynamics and control, robotics

统计学

  • Knowledgeable Level 1
  • First Answer

查看徽章

Feeds

排序方式:

已回答
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...

6 years 前 | 0

已回答
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...

6 years 前 | 2

| 已接受

已回答
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...

6 years 前 | 0