:mod:`ulab.numpy` ================= .. py:module:: ulab.numpy .. autoapi-nested-parse:: Numerical approximation methods .. toctree:: :maxdepth: 2 fft/index.rst linalg/index.rst .. py:function:: interp(x: ndarray, xp: ndarray, fp: ndarray, *, left: Optional[_float] = None, right: Optional[_float] = None) -> ndarray :param ulab.numpy.ndarray x: The x-coordinates at which to evaluate the interpolated values. :param ulab.numpy.ndarray xp: The x-coordinates of the data points, must be increasing :param ulab.numpy.ndarray fp: The y-coordinates of the data points, same length as xp :param left: Value to return for ``x < xp[0]``, default is ``fp[0]``. :param right: Value to return for ``x > xp[-1]``, default is ``fp[-1]``. Returns the one-dimensional piecewise linear interpolant to a function with given discrete data points (xp, fp), evaluated at x. .. py:function:: trapz(y: ndarray, x: Optional[ndarray] = None, dx: _float = 1.0) -> _float :param 1D ulab.numpy.ndarray y: the values of the dependent variable :param 1D ulab.numpy.ndarray x: optional, the coordinates of the independent variable. Defaults to uniformly spaced values. :param float dx: the spacing between sample points, if x=None Returns the integral of y(x) using the trapezoidal rule. .. py:data:: _ArrayLike .. py:data:: _DType `ulab.numpy.int8`, `ulab.numpy.uint8`, `ulab.numpy.int16`, `ulab.numpy.uint16`, `ulab.numpy.float` or `ulab.numpy.bool` .. py:data:: int8 :annotation: :_DType Type code for signed integers in the range -128 .. 127 inclusive, like the 'b' typecode of `array.array` .. py:data:: int16 :annotation: :_DType Type code for signed integers in the range -32768 .. 32767 inclusive, like the 'h' typecode of `array.array` .. py:data:: float :annotation: :_DType Type code for floating point values, like the 'f' typecode of `array.array` .. py:data:: uint8 :annotation: :_DType Type code for unsigned integers in the range 0 .. 255 inclusive, like the 'H' typecode of `array.array` .. py:data:: uint16 :annotation: :_DType Type code for unsigned integers in the range 0 .. 65535 inclusive, like the 'h' typecode of `array.array` .. py:data:: bool :annotation: :_DType Type code for boolean values .. py:function:: argmax(array: _ArrayLike, *, axis: Optional[int] = None) -> int Return the index of the maximum element of the 1D array .. py:function:: argmin(array: _ArrayLike, *, axis: Optional[int] = None) -> int Return the index of the minimum element of the 1D array .. py:function:: argsort(array: ndarray, *, axis: int = -1) -> ndarray Returns an array which gives indices into the input array from least to greatest. .. py:function:: cross(a: ndarray, b: ndarray) -> ndarray Return the cross product of two vectors of length 3 .. py:function:: diff(array: ndarray, *, n: int = 1, axis: int = -1) -> ndarray Return the numerical derivative of successive elements of the array, as an array. axis=None is not supported. .. py:function:: flip(array: ndarray, *, axis: Optional[int] = None) -> ndarray Returns a new array that reverses the order of the elements along the given axis, or along all axes if axis is None. .. py:function:: max(array: _ArrayLike, *, axis: Optional[int] = None) -> float Return the maximum element of the 1D array .. py:function:: mean(array: _ArrayLike, *, axis: Optional[int] = None) -> float Return the mean element of the 1D array, as a number if axis is None, otherwise as an array. .. py:function:: median(array: ndarray, *, axis: int = -1) -> ndarray Find the median value in an array along the given axis, or along all axes if axis is None. .. py:function:: min(array: _ArrayLike, *, axis: Optional[int] = None) -> float Return the minimum element of the 1D array .. py:function:: roll(array: ndarray, distance: int, *, axis: Optional[int] = None) -> None Shift the content of a vector by the positions given as the second argument. If the ``axis`` keyword is supplied, the shift is applied to the given axis. The array is modified in place. .. py:function:: sort(array: ndarray, *, axis: int = -1) -> ndarray Sort the array along the given axis, or along all axes if axis is None. The array is modified in place. .. py:function:: std(array: _ArrayLike, *, axis: Optional[int] = None, ddof: int = 0) -> float Return the standard deviation of the array, as a number if axis is None, otherwise as an array. .. py:function:: sum(array: _ArrayLike, *, axis: Optional[int] = None) -> Union[float, int, ndarray] Return the sum of the array, as a number if axis is None, otherwise as an array. .. py:class:: ndarray .. py:function:: get_printoptions() -> Dict[str, int] Get printing options .. py:function:: set_printoptions(threshold: Optional[int] = None, edgeitems: Optional[int] = None) -> None Set printing options .. py:function:: ndinfo(array: ndarray) -> None .. py:function:: array(values: Union[ndarray, Iterable[Union[float, bool, Iterable[Any]]]], *, dtype: _DType = ulab.numpy.float) -> ndarray alternate constructor function for `ulab.numpy.ndarray`. Mirrors numpy.array .. py:function:: trace(m: ndarray) -> float :param m: a square matrix Compute the trace of the matrix, the sum of its diagonal elements. .. py:function:: dot(m1: ndarray, m2: ndarray) -> Union[ndarray, float] :param ~ulab.numpy.ndarray m1: a matrix, or a vector :param ~ulab.numpy.ndarray m2: a matrix, or a vector Computes the product of two matrices, or two vectors. In the letter case, the inner product is returned. .. py:function:: acos(a: _ArrayLike) -> ndarray Computes the inverse cosine function .. py:function:: acosh(a: _ArrayLike) -> ndarray Computes the inverse hyperbolic cosine function .. py:function:: asin(a: _ArrayLike) -> ndarray Computes the inverse sine function .. py:function:: asinh(a: _ArrayLike) -> ndarray Computes the inverse hyperbolic sine function .. py:function:: around(a: _ArrayLike, *, decimals: int = 0) -> ndarray Returns a new float array in which each element is rounded to ``decimals`` places. .. py:function:: atan(a: _ArrayLike) -> ndarray Computes the inverse tangent function; the return values are in the range [-pi/2,pi/2]. .. py:function:: arctan2(ya: _ArrayLike, xa: _ArrayLike) -> ndarray Computes the inverse tangent function of y/x; the return values are in the range [-pi, pi]. .. py:function:: atanh(a: _ArrayLike) -> ndarray Computes the inverse hyperbolic tangent function .. py:function:: ceil(a: _ArrayLike) -> ndarray Rounds numbers up to the next whole number .. py:function:: cos(a: _ArrayLike) -> ndarray Computes the cosine function .. py:function:: cosh(a: _ArrayLike) -> ndarray Computes the hyperbolic cosine function .. py:function:: degrees(a: _ArrayLike) -> ndarray Converts angles from radians to degrees .. py:function:: erf(a: _ArrayLike) -> ndarray Computes the error function, which has applications in statistics .. py:function:: erfc(a: _ArrayLike) -> ndarray Computes the complementary error function, which has applications in statistics .. py:function:: exp(a: _ArrayLike) -> ndarray Computes the exponent function. .. py:function:: expm1(a: _ArrayLike) -> ndarray Computes $e^x-1$. In certain applications, using this function preserves numeric accuracy better than the `exp` function. .. py:function:: floor(a: _ArrayLike) -> ndarray Rounds numbers up to the next whole number .. py:function:: gamma(a: _ArrayLike) -> ndarray Computes the gamma function .. py:function:: lgamma(a: _ArrayLike) -> ndarray Computes the natural log of the gamma function .. py:function:: log(a: _ArrayLike) -> ndarray Computes the natural log .. py:function:: log10(a: _ArrayLike) -> ndarray Computes the log base 10 .. py:function:: log2(a: _ArrayLike) -> ndarray Computes the log base 2 .. py:function:: radians(a: _ArrayLike) -> ndarray Converts angles from degrees to radians .. py:function:: sin(a: _ArrayLike) -> ndarray Computes the sine function .. py:function:: sinh(a: _ArrayLike) -> ndarray Computes the hyperbolic sine .. py:function:: sqrt(a: _ArrayLike) -> ndarray Computes the square root .. py:function:: tan(a: _ArrayLike) -> ndarray Computes the tangent .. py:function:: tanh(a: _ArrayLike) -> ndarray Computes the hyperbolic tangent .. py:function:: vectorize(f: Union[Callable[[int], float], Callable[[float], float]], *, otypes: Optional[_DType] = None) -> Callable[[_ArrayLike], ndarray] :param callable f: The function to wrap :param otypes: List of array types that may be returned by the function. None is interpreted to mean the return value is float. Wrap a Python function ``f`` so that it can be applied to arrays. The callable must return only values of the types specified by ``otypes``, or the result is undefined.