For C++ Experts
==============
I have two vectors vx and w saved in a text file with size of (3000)
- I have read those two text files and generate two vectors
- I will use each value in those two vectors to send a command to a robot using these commands
robot.setVel(*i);
robot.setRotVel(*j);
As shown in the Figure
However
=======
The Program use the last value only in the two vectors
Can any one help to send each value in the vectors to the robot.?