photo

Youssef Ben Dhiab


Rice University

Active since 2017

Followers: 0   Following: 0

Message

Professional Interests: Vibration, dynamics and control, robotics

Statistics

MATLAB Answers

0 Questions
3 Answers

RANK
5,207
of 300,678

REPUTATION
10

CONTRIBUTIONS
0 Questions
3 Answers

ANSWER ACCEPTANCE
0.00%

VOTES RECEIVED
2

RANK
 of 21,039

REPUTATION
N/A

AVERAGE RATING
0.00

CONTRIBUTIONS
0 Files

DOWNLOADS
0

ALL TIME DOWNLOADS
0

RANK

of 170,111

CONTRIBUTIONS
0 Problems
0 Solutions

SCORE
0

NUMBER OF BADGES
0

CONTRIBUTIONS
0 Posts

CONTRIBUTIONS
0 Public Channels

AVERAGE RATING

CONTRIBUTIONS
0 Highlights

AVERAGE NO. OF LIKES

  • Knowledgeable Level 1
  • First Answer

View badges

Feeds

View by

Answered
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...

8 years ago | 0

Answered
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...

8 years ago | 2

| accepted

Answered
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...

8 years ago | 0