About 399 results
Open links in new tab
  1. numpy.linalg.inv — NumPy v2.2 Manual

    numpy.linalg.inv # linalg.inv(a) [source] # Compute the inverse of a matrix. Given a square matrix a, return the matrix ainv satisfying a @ ainv = ainv @ a = eye(a.shape[0]). Parameters: a(…, …

  2. numpy.linalg.pinv — NumPy v2.2 Manual

    Compute the (Moore-Penrose) pseudo-inverse of a matrix. Calculate the generalized inverse of a matrix using its singular-value decomposition (SVD) and including all large singular values.

  3. numpy.matrix.I — NumPy v2.2 Manual

    numpy.matrix.I # property property matrix.I # Returns the (multiplicative) inverse of invertible self. Parameters: None Returns: retmatrix object If self is non-singular, ret is such that ret * self == …

  4. Linear algebra (numpy.linalg) — NumPy v2.2 Manual

    SciPy contains functions not found in numpy.linalg, such as functions related to LU decomposition and the Schur decomposition, multiple ways of calculating the pseudoinverse, and matrix …

  5. numpy.matrix — NumPy v2.2 Manual

    numpy.matrix # class numpy.matrix(data, dtype=None, copy=True) [source] # Returns a matrix from an array-like object, or from a string of data. A matrix is a specialized 2-D array that …

  6. numpy.matrix.transpose — NumPy v2.2 Manual

    numpy.matrix.transpose # method matrix.transpose(*axes) # Returns a view of the array with axes transposed. Refer to numpy.transpose for full documentation. Parameters: axesNone, …

  7. numpy.linalg.cholesky — NumPy v2.2 Manual

    Return the lower or upper Cholesky decomposition, L * L.H or U.H * U, of the square matrix a, where L is lower-triangular, U is upper-triangular, and .H is the conjugate transpose operator …

  8. numpy.fft.ifft — NumPy v2.2 Manual

    This function computes the inverse of the one-dimensional n -point discrete Fourier transform computed by fft. In other words, ifft(fft(a)) == a to within numerical accuracy.

  9. numpy.invert — NumPy v2.2 Manual

    numpy.invert(x, /, out=None, *, where=True, casting='same_kind', order='K', dtype=None, subok=True[, signature]) = <ufunc 'invert'> # Compute bit-wise inversion, or bit-wise NOT, …

  10. numpy.linalg.inv — NumPy v1.21 Manual

    Jun 22, 2021 · numpy.linalg.inv ¶ linalg.inv(a) [source] ¶ Compute the (multiplicative) inverse of a matrix. Given a square matrix a, return the matrix ainv satisfying dot(a, ainv) = dot(ainv, a) = …

Refresh