|
def | qless (self) |
|
def | qs (self) |
|
def | q1 (self) |
|
def | q2 (self) |
|
def | qm (self) |
|
def | test_bitwise_and (self) |
|
def | test_bitwise_or (self) |
|
def | test_bitwise_xor (self) |
|
def | test_invert (self) |
|
def | test_left_shift (self) |
|
def | test_right_shift (self) |
|
def | qi (self) |
|
def | assertEqual (self, first, second, msg=None) |
|
def | assertRaisesMsg (self, msg, ExcType, func, *args, **kwargs) |
|
def | setUpClass (cls) |
|
def | assertSequenceEqual (self, seq1, seq2, msg=None, seq_type=None) |
|
def | assertAlmostEqual (self, first, second, places=None, msg=None, delta=None) |
|
def | assertAlmostEqualRelError (self, first, second, rel, msg=None) |
|
Universal functions (ufuncs) > Bittwiddling functions
http://docs.scipy.org/doc/numpy/reference/ufuncs.html#bittwiddlingfunctions
bitwise_and(x1, x2[, out]) Compute the bitwise AND of two arrays elementwise.
bitwise_or(x1, x2[, out]) Compute the bitwise OR of two arrays elementwise.
bitwise_xor(x1, x2[, out]) Compute the bitwise XOR of two arrays elementwise.
invert(x[, out]) Compute bitwise inversion, or bitwise NOT, elementwise.
left_shift(x1, x2[, out]) Shift the bits of an integer to the left.
right_shift(x1, x2[, out]) Shift the bits of an integer to the right.