We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 03b0165 commit abf7a5bCopy full SHA for abf7a5b
roboticstoolbox/robot/DHRobot.py
@@ -2436,6 +2436,29 @@ def ik_gn(
2436
)
2437
2438
2439
+ def ikine_LM(
2440
+ self,
2441
+ Tep: Union[np.ndarray, SE3],
2442
+ q0: Union[ArrayLike, None] = None,
2443
+ ilimit: int = 30,
2444
+ slimit: int = 100,
2445
+ tol: float = 1e-6,
2446
+ joint_limits: bool = False,
2447
+ mask: Union[ArrayLike, None] = None,
2448
+ seed: Union[int, None] = None,
2449
+ ):
2450
+ return self.ets().ikine_LM(
2451
+ Tep=Tep,
2452
+ q0=q0,
2453
+ ilimit=ilimit,
2454
+ slimit=slimit,
2455
+ tol=tol,
2456
+ joint_limits=joint_limits,
2457
+ mask=mask,
2458
+ seed=seed,
2459
+ )
2460
+
2461
2462
class SerialLink(DHRobot):
2463
def __init__(self, *args, **kwargs):
2464
warnings.warn(
0 commit comments