Skip to content

Commit

Permalink
Merge pull request #435 from fchapoton/patch-1
Browse files Browse the repository at this point in the history
fix doc error in _multivector.py
  • Loading branch information
arsenovic authored Dec 8, 2024
2 parents 3b5f83a + 8b24d76 commit 6939f2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion clifford/_multivector.py
Original file line number Diff line number Diff line change
Expand Up @@ -849,7 +849,7 @@ def dual(self, I=None) -> 'MultiVector':
def commutator(self, other) -> 'MultiVector':
r"""The commutator product of two multivectors.
:math:`[M, N] = M \times N = (MN + NM)/2`
:math:`[M, N] = M \times N = (MN - NM)/2`
"""

return ((self * other) - (other * self)) / 2
Expand Down

0 comments on commit 6939f2a

Please sign in to comment.