Joint accelerations given joint torques and states
computes
joint accelerations due to gravity at the robot home configuration,
with zero joint velocities and no external forces.jointAccel
= forwardDynamics(robot
)
also
specifies the joint positions of the robot configuration.jointAccel
= forwardDynamics(robot
,configuration
)
To specify the home configuration, zero joint velocities, or zero torques, use
[]
for that input argument.
also
specifies the joint velocities of the robot.jointAccel
= forwardDynamics(robot
,configuration
,jointVel
)
also
specifies the joint torques applied to the robot. jointAccel
= forwardDynamics(robot
,configuration
,jointVel
,jointTorq
)
also specifies an external force matrix that contains forces applied to each
joint.jointAccel
= forwardDynamics(robot
,configuration
,jointVel
,jointTorq
,fext
)