Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5

Solve_IK Matlab

#1
Hi,

RL.Solve_IK(T) in Matlab does not consider the tool frame and returns the answer for robot flange.
There are also multiple problems with Matlab. Solve_IK_All( ) doesn't work properly. Get_Htool() doesn't work. ...

Hamid
#2
You should use robot.Htool() to get the tool frame and do your own post multiplication.

Example using Python:

Code:
RDK = Robolink()
    robot = RDK.ItemUserPick('Select a robot', ITEM_TYPE_ROBOT)
    Htool = robot.Htool()           # retrieve the tool frame with respect to the robot flange

    # Calculate the tool frame with respect to the reference frame:
    target = Hreference*robot.SolveFK(joints)*Htool
  




Users browsing this thread:
1 Guest(s)