from __future__ import annotations from ._types import array from ._array_object import ndarray import numpy as np def abs(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.abs `. See its docstring for more information. """ return ndarray._new(np.abs(x._array)) def acos(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.arccos `. See its docstring for more information. """ # Note: the function name is different here return ndarray._new(np.arccos(x._array)) def acosh(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.arccosh `. See its docstring for more information. """ # Note: the function name is different here return ndarray._new(np.arccosh(x._array)) def add(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.add `. See its docstring for more information. """ return ndarray._new(np.add(x1._array, x2._array)) def asin(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.arcsin `. See its docstring for more information. """ # Note: the function name is different here return ndarray._new(np.arcsin(x._array)) def asinh(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.arcsinh `. See its docstring for more information. """ # Note: the function name is different here return ndarray._new(np.arcsinh(x._array)) def atan(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.arctan `. See its docstring for more information. """ # Note: the function name is different here return ndarray._new(np.arctan(x._array)) def atan2(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.arctan2 `. See its docstring for more information. """ # Note: the function name is different here return ndarray._new(np.arctan2(x1._array, x2._array)) def atanh(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.arctanh `. See its docstring for more information. """ # Note: the function name is different here return ndarray._new(np.arctanh(x._array)) def bitwise_and(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.bitwise_and `. See its docstring for more information. """ return ndarray._new(np.bitwise_and(x1._array, x2._array)) def bitwise_left_shift(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.left_shift `. See its docstring for more information. """ # Note: the function name is different here return ndarray._new(np.left_shift(x1._array, x2._array)) def bitwise_invert(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.invert `. See its docstring for more information. """ # Note: the function name is different here return ndarray._new(np.invert(x._array)) def bitwise_or(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.bitwise_or `. See its docstring for more information. """ return ndarray._new(np.bitwise_or(x1._array, x2._array)) def bitwise_right_shift(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.right_shift `. See its docstring for more information. """ # Note: the function name is different here return ndarray._new(np.right_shift(x1._array, x2._array)) def bitwise_xor(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.bitwise_xor `. See its docstring for more information. """ return ndarray._new(np.bitwise_xor(x1._array, x2._array)) def ceil(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.ceil `. See its docstring for more information. """ return ndarray._new(np.ceil(x._array)) def cos(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.cos `. See its docstring for more information. """ return ndarray._new(np.cos(x._array)) def cosh(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.cosh `. See its docstring for more information. """ return ndarray._new(np.cosh(x._array)) def divide(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.divide `. See its docstring for more information. """ return ndarray._new(np.divide(x1._array, x2._array)) def equal(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.equal `. See its docstring for more information. """ return ndarray._new(np.equal(x1._array, x2._array)) def exp(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.exp `. See its docstring for more information. """ return ndarray._new(np.exp(x._array)) def expm1(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.expm1 `. See its docstring for more information. """ return ndarray._new(np.expm1(x._array)) def floor(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.floor `. See its docstring for more information. """ return ndarray._new(np.floor(x._array)) def floor_divide(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.floor_divide `. See its docstring for more information. """ return ndarray._new(np.floor_divide(x1._array, x2._array)) def greater(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.greater `. See its docstring for more information. """ return ndarray._new(np.greater(x1._array, x2._array)) def greater_equal(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.greater_equal `. See its docstring for more information. """ return ndarray._new(np.greater_equal(x1._array, x2._array)) def isfinite(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.isfinite `. See its docstring for more information. """ return ndarray._new(np.isfinite(x._array)) def isinf(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.isinf `. See its docstring for more information. """ return ndarray._new(np.isinf(x._array)) def isnan(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.isnan `. See its docstring for more information. """ return ndarray._new(np.isnan(x._array)) def less(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.less `. See its docstring for more information. """ return ndarray._new(np.less(x1._array, x2._array)) def less_equal(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.less_equal `. See its docstring for more information. """ return ndarray._new(np.less_equal(x1._array, x2._array)) def log(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.log `. See its docstring for more information. """ return ndarray._new(np.log(x._array)) def log1p(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.log1p `. See its docstring for more information. """ return ndarray._new(np.log1p(x._array)) def log2(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.log2 `. See its docstring for more information. """ return ndarray._new(np.log2(x._array)) def log10(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.log10 `. See its docstring for more information. """ return ndarray._new(np.log10(x._array)) def logaddexp(x1: array, x2: array) -> array: """ Array API compatible wrapper for :py:func:`np.logaddexp `. See its docstring for more information. """ return ndarray._new(np.logaddexp(x1._array, x2._array)) def logical_and(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.logical_and `. See its docstring for more information. """ return ndarray._new(np.logical_and(x1._array, x2._array)) def logical_not(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.logical_not `. See its docstring for more information. """ return ndarray._new(np.logical_not(x._array)) def logical_or(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.logical_or `. See its docstring for more information. """ return ndarray._new(np.logical_or(x1._array, x2._array)) def logical_xor(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.logical_xor `. See its docstring for more information. """ return ndarray._new(np.logical_xor(x1._array, x2._array)) def multiply(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.multiply `. See its docstring for more information. """ return ndarray._new(np.multiply(x1._array, x2._array)) def negative(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.negative `. See its docstring for more information. """ return ndarray._new(np.negative(x._array)) def not_equal(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.not_equal `. See its docstring for more information. """ return ndarray._new(np.not_equal(x1._array, x2._array)) def positive(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.positive `. See its docstring for more information. """ return ndarray._new(np.positive(x._array)) def pow(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.power `. See its docstring for more information. """ # Note: the function name is different here return ndarray._new(np.power(x1._array, x2._array)) def remainder(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.remainder `. See its docstring for more information. """ return ndarray._new(np.remainder(x1._array, x2._array)) def round(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.round `. See its docstring for more information. """ return ndarray._new(np.round._implementation(x._array)) def sign(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.sign `. See its docstring for more information. """ return ndarray._new(np.sign(x._array)) def sin(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.sin `. See its docstring for more information. """ return ndarray._new(np.sin(x._array)) def sinh(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.sinh `. See its docstring for more information. """ return ndarray._new(np.sinh(x._array)) def square(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.square `. See its docstring for more information. """ return ndarray._new(np.square(x._array)) def sqrt(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.sqrt `. See its docstring for more information. """ return ndarray._new(np.sqrt(x._array)) def subtract(x1: array, x2: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.subtract `. See its docstring for more information. """ return ndarray._new(np.subtract(x1._array, x2._array)) def tan(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.tan `. See its docstring for more information. """ return ndarray._new(np.tan(x._array)) def tanh(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.tanh `. See its docstring for more information. """ return ndarray._new(np.tanh(x._array)) def trunc(x: array, /) -> array: """ Array API compatible wrapper for :py:func:`np.trunc `. See its docstring for more information. """ return ndarray._new(np.trunc(x._array))