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

    It is also possible to detect ill-conditioning by inspecting the matrix’s singular values directly. The ratio between the largest and the smallest singular value is the condition number:

  2. numpy.linalg.pinv — NumPy v2.3 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. Linear algebra — NumPy v2.3 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 …

  4. numpy.matrix.I — NumPy v2.3 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 == …

  5. numpy.invert — NumPy v2.3 Manual

    This ufunc implements the C/Python operator ~. For signed integer inputs, the bit-wise NOT of the absolute value is returned. In a two’s-complement system, this operation effectively flips all the …

  6. numpy.matrix — NumPy v2.1 Manual

    A matrix is a specialized 2-D array that retains its 2-D nature through operations. It has certain special operators, such as * (matrix multiplication) and ** (matrix power).

  7. numpy.linalg.tensorinv — NumPy v2.3 Manual

    Compute the ‘inverse’ of an N-dimensional array. The result is an inverse for a relative to the tensordot operation tensordot(a, b, ind), i. e., up to floating-point accuracy, …

  8. numpy.matrix.transpose — NumPy v2.3 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, …

  9. numpy.linalg.solve — NumPy v2.3 Manual

    Solve a linear matrix equation, or system of linear scalar equations. Computes the “exact” solution, x, of the well-determined, i.e., full rank, linear matrix equation ax = b.

  10. numpy.cov — NumPy v2.3 Manual

    Estimate a covariance matrix, given data and weights. Covariance indicates the level to which two variables vary together. If we examine N-dimensional samples, X = [x 1, x 2, x N] T, then the …