Thanks for the reply,
The orientation of the tool remains the same throughout the motion; so it would be pure translation I believe. Quite like the example here (at 40s):
https://www.youtube.com/watch?v=R1t3Ydcz6cQ&index=7&list=PLF58C18380E9B356Fexcept I need to be able to specify the max speed the tool should attain along the path, and then I need to obtain the joint speeds instead of just the joint angles.
Also, if you've worked with real robots would you mind telling me what exactly we are able to control? My original question is based on the assumption that in order to control a real robot, you have to provide it with the speed of the joints (motors). If it is possible to just provide it with different angles at different time steps then my guess would be to implement something like:
-define two points.
-use mstraj() function to create a trajectory of points
-convert these points into transformation matrices
-use ikine() function to find the joint angles at each time step
-and apply the joint angles to the robot.
But anyways, if this is wrong please ignore it so as not to stray from the original question.
Thanks.