Search
Search Results
Search finished, found 25 page(s) matching the search query.
- numpy.matrix.sort
...ce Array objects Standard array subclasses numpy.matrix numpy.matrix.sort...
- numpy.matrix.sort (Python method, in numpy.matrix.sort)
- NumPy 1.10.4 Release Notes
...p with the units package of AstroPy and hopefully will not cause problems. Issues Fixed gh-6922 BUG: numpy.recarray.sort segfaults on Windows. gh-6937 BUG: busday_offset does the wrong thing with modifiedpreceding roll. gh-6949 BUG: Typ...
- NumPy 1.11.0 Release Notes
...ter was added to np.gradient for consistency. It allows to specify over which axes the gradient is calculated. np.lexsort now supports arrays with object data-type The function now internally calls the generic npy_amergesort when the typ...
- NumPy 1.13.0 Release Notes
- NumPy 1.14.0 Release Notes
- NumPy 1.15.0 Release Notes
...override == and other operators to return expressions, to be compared elementwise with np.equal(a, b, dtype=object). sort functions accept kind='stable' Up until now, to perform a stable sort on the data, the user must do: >>> np.sort([5...
- NumPy 1.25.0 Release Notes
...rrect results for these by avoiding the cast to float. (gh-23713) Performance improvements and changes Faster np.argsort on AVX-512 enabled processors 32-bit and 64-bit quicksort algorithm for np.argsort gain up to 6x speed up on proces...
- NumPy 1.7.0 Release Notes
...t, edge, linear_ramp, maximum, mean, median, minimum, reflect, symmetric, wrap, and <function>. New argument to searchsorted The function searchsorted now accepts a ‘sorter’ argument that is a permutation array that sorts the array to sea...
- NumPy 1.8.0 Release Notes
...rations on stacked arrays. New, inplace fancy indexing for ufuncs with the .at method. New, partition function, partial sorting via selection for fast median. New, nanmean, nanvar, and nanstd functions skipping NaNs. New, full and full_like...
- NumPy 1.9.0 Release Notes
...r versions to an array via np.array. If the overwrite_input option is used the input is only partially instead of fully sorted. ndarray.tofile exception type All tofile exceptions are now IOError, some were previously ValueError. Invali...
- NumPy 2.0.0 Release Notes
...n all numpy.fft functions, Support for the array API standard in the main numpy namespace. Performance improvements: Sorting functions (sort, argsort, partition, argpartition) have been accelerated through the use of the Intel x86-simd-s...
- NumPy for MATLAB users
...e gradients solver fft(a) np.fft.fft(a) Fourier transform of a ifft(a) np.fft.ifft(a) inverse Fourier transform of a sort(a) np.sort(a) or a.sort(axis=0) sort each column of a 2D array, a sort(a, 2) np.sort(a, axis=1) or a.sort(axis=1)...
- NumPy quickstart
- numpy.linalg.svd
...l_matrices. Only returned when compute_uv is True. S(…, K) arrayVector(s) with the singular values, within each vector sorted in descending order. The first a.ndim - 2 dimensions have the same size as those of the input a. Vh{ (…, N, N),...
- numpy.matrix.argsort
...Array objects Standard array subclasses numpy.matrix numpy.matrix.argsort...
- numpy.matrix.partition
- numpy.matrix.sort
...ce Array objects Standard array subclasses numpy.matrix numpy.matrix.sort...
- numpy.permute_dims
...never possible. See also ndarray.transposeEquivalent method. moveaxisMove axes of an array to new positions. argsortReturn the indices that would sort an array. Notes Use transpose(a, argsort(axes)) to invert the transposition of...
- numpy.transpose
- NumPy: the absolute basics for beginners
- The N-dimensional array (
ndarray
) - numpy.matrix.argsort (Python method, in numpy.matrix.argsort)
- numpy.matrix.searchsorted (Python method, in numpy.matrix.searchsorted)
- Array API