Search
Search Results
Search finished, found 9 page(s) matching the search query.
- numpy.matrix.swapaxes
...ce Array objects Standard array subclasses numpy.matrix numpy.matrix.swapaxes...
- numpy.matrix.swapaxes (Python method, in numpy.matrix.swapaxes)
- NumPy 1.10.0 Release Notes
...arrays as before. If you need to preserve the matrix subtype, use the methods instead of the functions. rollaxis and swapaxes always return a view Previously, a view was returned except when no change was made in the order of the axes, i...
- NumPy quickstart
...concatenate, diagonal, dsplit, dstack, hsplit, hstack, ndarray.item, newaxis, ravel, repeat, reshape, resize, squeeze, swapaxes, take, transpose, vsplit, vstack Questionsall, any, nonzero, where Orderingargmax, argmin, argsort, max, min,...
- numpy.einsum
- numpy.matrix.swapaxes
...ce Array objects Standard array subclasses numpy.matrix numpy.matrix.swapaxes...
- numpy.ravel
...>>> a.ravel(order='C') array([2, 1, 0]) >>> a.ravel(order='K') array([2, 1, 0]) >>> a = np.arange(12).reshape(2,3,2).swapaxes(1,2); a array([[[ 0, 2, 4], [ 1, 3, 5]], [[ 6, 8, 10], [ 7, 9, 11]]]) >>> a.ravel(...
- The N-dimensional array (
ndarray
)..., mean, min, nonzero, partition, prod, put, ravel, real, repeat, reshape, round, searchsorted, sort, squeeze, std, sum, swapaxes, take, trace, transpose, var. Array conversion ndarray.item(*args) Copy an element of an array to a standard...
- Array API
...are always 2-dimensional. Therefore, PyArray_Squeeze has no effect on arrays of matrix sub-class. PyObject *PyArray_SwapAxes(PyArrayObject *self, int a1, int a2) Equivalent to ndarray.swapaxes (self, a1, a2). The returned array is a new...