10 examples of 'python arctan' in Python

Every line of 'python arctan' code snippets is scanned for vulnerabilities by our powerful machine learning engine that combs millions of open source libraries, ensuring your Python code is secure.

All examples are scanned by Snyk Code

By copying the Snyk Code Snippets you agree to
351def arctanh(a: ndarray):
352 """
353 Inverse hyperbolic tangent element-wise.
354 """
355
356 return _unary_function(a, af_func=af.atanh, np_func=np.arctanh)
555def arctanh(a):
556 from paradox.kernel.operator import HyperbolicArcTangent
557 return Symbol(operator=HyperbolicArcTangent(), inputs=as_symbols([a]))
405def arctanh(x, **kw):
406 return _call_unary('arctanh', x, **kw)
272def arcsin(x: ndarray):
273 """
274 Inverse sine, element-wise.
275 """
276
277 return _unary_function(x, af_func=af.asin, np_func=np.arcsin)
1111def _arctan():
1112 ONE = nthpower(0)
1113 X2 = nthpower(2)
1114 for term in integ(ONE / (ONE + X2)):
1115 yield term
280def arccos(x: ndarray):
281 """
282 Trigonometric inverse cosine, element-wise.
283 """
284
285 return _unary_function(x, af_func=af.acos, np_func=np.arccos)
3214@structured_monoid(tensor.arctanh)
3215def arctanh(x):
3216 """
3217 Elemwise arctanh of `x`.
3218
3219 """
12def asin(*args, **kwargs) -> complex: pass
129def __call__(self, a):
130 self.variables = (a,)
131 return np.arccos(a.data)
113def asin(arg):
114 return _generate_intrinsic_function_expression(arg, 'asin', math.asin)

Related snippets