bundles / scipy latest / scipy / sparse / _construct / swapaxes
function
scipy.sparse._construct:swapaxes
source: /scipy/sparse/_construct.py :85
Signature
def swapaxes ( A , axis1 , axis2 ) Summary
Interchange two axes of an array.
Parameters
A: sparse arrayaxis1: intFirst axis.
axis2: intSecond axis.
Returns
a_swapped: sparse array in COO formatA copy of the input array with the two identified axes swapped.
Raises
: ValueErrorIf provided a non-integer or out of range
[-N, N-1]axis, whereNisA.ndim.
Examples
from scipy.sparse import coo_array, swapaxes A = coo_array([[[1, 2, 3], [2, 0, 0]]]) A.shape swapaxes(A, 1, 2).shape✓
Aliases
-
scipy.sparse.swapaxes