Search
Search Results
Search finished, found 49 page(s) matching the search query.
- numpy.matrix.transpose
...ce Array objects Standard array subclasses numpy.matrix numpy.matrix.transpose...
- numpy.matrix.transpose (Python method, in numpy.matrix.transpose)
- Constants of the
numpy.ma
module...urn the array data as a string containing the raw bytes in the array. Shape manipulation For reshape, resize, and transpose, the single tuple argument may be replaced with n integers which will be interpreted as an n-tuple. MaskedAr...
- How to contribute to the NumPy documentation
...hich raises the bar. Test the waters by first presenting the fix as an issue. Some functions/objects like numpy.ndarray.transpose, numpy.array etc. defined in C-extension modules have their docstrings defined separately in _add_newdocs.py...
- Internal organization of NumPy arrays
..., etc) but shares the same data bytes. Many operations in NumPy do just this such as slicing. Other operations, such as transpose, don’t move data elements around in the array, but rather change the information about the shape and strides s...
- NumPy 1.11.0 Release Notes
...viously, gemm BLAS operations were used for all matrix products. Now, if the matrix product is between a matrix and its transpose, it will use syrk BLAS operations for a performance boost. This optimization has been extended to @, numpy.dot...
- NumPy 2.0.0 Release Notes
...enums, expired members and functions have been removed from the main namespace, such as: ERR_*, SHIFT_*, np.fastCopyAndTranspose, np.kernel_version, np.numarray, np.oldnumeric and np.set_numeric_ops. (gh-24316) Replaced from ... import *...
- NumPy 2.2.0 Release Notes
....size > 0 instead to check whether an array has no elements. (gh-27160) Compatibility notes numpy.cov now properly transposes single-row (2d array) design matrices when rowvar=False. Previously, single-row design matrices would return...
- NumPy for MATLAB users
...with rows in reverse order a([1:end 1],:) a[np.r_[:len(a),0]] a with copy of the first row appended to the end a.' a.transpose() or a.T transpose of a a' a.conj().transpose() or a.conj().T conjugate transpose of a a * b a @ b matrix mu...
- NumPy quickstart
...ner, invert, lexsort, max, maximum, mean, median, min, minimum, nonzero, outer, prod, re, round, sort, std, sum, trace, transpose, var, vdot, vectorize, where Indexing, slicing and iterating One-dimensional arrays can be indexed, sliced...
- numpy.char.chararray
- numpy.char.chararray.mT
- numpy.char.chararray.view
...', 'i1')]) Views that change the dtype size (bytes per entry) should normally be avoided on arrays defined by slices, transposes, fortran-ordering, etc.: >>> x = np.array([[1, 2, 3], [4, 5, 6]], dtype=np.int16) >>> y = x[:, ::2] >>> y arr...
- numpy.corrcoef
...s True (default), then each row represents a variable, with observations in the columns. Otherwise, the relationship is transposed: each column represents a variable, while the rows contain observations. bias_NoValue, optionalHas no effect...
- numpy.cov
- numpy.einsum
- numpy.linalg.cholesky
...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 (which is the ordinary transpose if a is real-valued). a must be Hermitian (symmetric if real-valued)...
- numpy.linalg.eig
...envector of a, and, in general, the left and right eigenvectors of a matrix are not necessarily the (perhaps conjugate) transposes of each other. References G. Strang, Linear Algebra and Its Applications, 2nd Ed., Orlando, FL, Academic Pres...
- numpy.linalg.eigvals
...e its diagonal elements, that multiplying a matrix on the left by an orthogonal matrix, Q, and on the right by Q.T (the transpose of Q), preserves the eigenvalues of the “middle” matrix. In other words, if Q is orthogonal, then Q * A * Q.T...
- numpy.linalg.matrix_transpose
- numpy.linalg.qr
- numpy.linalg.svd
- numpy.ma.corrcoef
...s True (default), then each row represents a variable, with observations in the columns. Otherwise, the relationship is transposed: each column represents a variable, while the rows contain observations. bias_NoValue, optionalHas no effect...
- numpy.ma.cov
...s True (default), then each row represents a variable, with observations in the columns. Otherwise, the relationship is transposed: each column represents a variable, while the rows contain observations. biasbool, optionalDefault normaliza...
- numpy.ma.masked_array.mT
- numpy.matrix
- numpy.matrix.getH
- numpy.matrix.getT
- numpy.matrix.H
- numpy.matrix.mT
- numpy.matrix.strides
- numpy.matrix.T
- numpy.matrix.transpose
- numpy.matrix.view
- numpy.matrix_transpose
- numpy.memmap.mT
- numpy.memmap.view
- numpy.ndarray.mT
- numpy.ndarray.view
- numpy.permute_dims
- numpy.recarray
- numpy.recarray.mT
- numpy.recarray.view
- numpy.transpose
- NumPy: the absolute basics for beginners
- The N-dimensional array (
ndarray
) - numpy.linalg.matrix_transpose (Python function, in numpy.linalg.matrix_transpose)
- numpy.matrix_transpose (Python function, in numpy.matrix_transpose)
- Array API