|
def | test_sin (self) |
|
def | test_cos (self) |
|
def | test_tan (self) |
|
def | test_arcsin (self) |
|
def | test_arccos (self) |
|
def | test_arctan (self) |
|
def | test_arctan2 (self) |
|
def | test_hypot (self) |
|
def | test_sinh (self) |
|
def | test_cosh (self) |
|
def | test_tanh (self) |
|
def | test_arcsinh (self) |
|
def | test_arccosh (self) |
|
def | test_arctanh (self) |
|
def | test_deg2rad (self) |
|
def | test_rad2deg (self) |
|
def | qless (self) |
|
def | qs (self) |
|
def | q1 (self) |
|
def | q2 (self) |
|
def | qm (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 (ufunc) > Trigonometric functions
http://docs.scipy.org/doc/numpy/reference/ufuncs.html#trigonometric-functions
sin(x[, out]) Trigonometric sine, element-wise.
cos(x[, out]) Cosine elementwise.
tan(x[, out]) Compute tangent element-wise.
arcsin(x[, out]) Inverse sine, element-wise.
arccos(x[, out]) Trigonometric inverse cosine, element-wise.
arctan(x[, out]) Trigonometric inverse tangent, element-wise.
arctan2(x1, x2[, out]) Element-wise arc tangent of x1/x2 choosing the quadrant correctly.
hypot(x1, x2[, out]) Given the “legs” of a right triangle, return its hypotenuse.
sinh(x[, out]) Hyperbolic sine, element-wise.
cosh(x[, out]) Hyperbolic cosine, element-wise.
tanh(x[, out]) Compute hyperbolic tangent element-wise.
arcsinh(x[, out]) Inverse hyperbolic sine elementwise.
arccosh(x[, out]) Inverse hyperbolic cosine, elementwise.
arctanh(x[, out]) Inverse hyperbolic tangent elementwise.
deg2rad(x[, out]) Convert angles from degrees to radians.
rad2deg(x[, out]) Convert angles from radians to degrees.