MCPcopy Index your code
hub / github.com/matplotlib/matplotlib / conjugate

Method conjugate

lib/mpl_toolkits/mplot3d/axes3d.py:4343–4345  ·  view source on GitHub ↗

The conjugate quaternion -(1/2)*(q+i*q*i+j*q*j+k*q*k)

(self)

Source from the content-addressed store, hash-verified

4341 + np.cross(self.vector, other.vector))
4342
4343 def conjugate(self):
4344 """The conjugate quaternion -(1/2)*(q+i*q*i+j*q*j+k*q*k)"""
4345 return self.__class__(self.scalar, -self.vector)
4346
4347 @property
4348 def norm(self):

Callers 2

test_quaternionFunction · 0.80
test_csd_paddingMethod · 0.80

Calls

no outgoing calls

Tested by 2

test_quaternionFunction · 0.64
test_csd_paddingMethod · 0.64