Skip to content

Commit 146342f

Browse files
committed
make docstrings raw because they include LaTeX math
1 parent 2aa7379 commit 146342f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

roboticstoolbox/robot/DHRobot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1041,7 +1041,7 @@ def jacob0(self, q=None, T=None):
10411041
return tr2jac(trinv(T.A)) @ self.jacobe(q)
10421042

10431043
def jacob_dot(self, q=None, qd=None):
1044-
"""
1044+
r"""
10451045
Derivative of Jacobian
10461046
10471047
:param q: The joint configuration of the robot (Optional,

roboticstoolbox/robot/ERobot.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1202,7 +1202,7 @@ def _getlink(self, link, default=None):
12021202
raise TypeError('unknown argument')
12031203

12041204
def jacob0(self, q, endlink=None, startlink=None, offset=None, T=None):
1205-
"""
1205+
r"""
12061206
Manipulator geometric Jacobian in the base frame
12071207
12081208
:param q: Joint coordinate vector
@@ -1309,7 +1309,7 @@ def jacob0(self, q, endlink=None, startlink=None, offset=None, T=None):
13091309
return J
13101310

13111311
def jacobe(self, q, endlink=None, startlink=None, offset=None, T=None):
1312-
"""
1312+
r"""
13131313
Manipulator geometric Jacobian in the end-effector frame
13141314
13151315
:param q: Joint coordinate vector

0 commit comments

Comments
 (0)