8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
moveaxis
1 parent fa01705 commit ad97bfdCopy full SHA for ad97bfd
signatures/manipulation/moveaxis.md
@@ -0,0 +1,45 @@
1
+# moveaxis
2
+
3
+## NumPy
4
5
+```
6
+numpy.moveaxis(a, source, destination) → ndarray
7
8
9
+## CuPy
10
11
12
+cupy.moveaxis(a, source, destination) → ndarray
13
14
15
+## dask.array
16
17
18
+dask.array.moveaxis(a, source, destination) → ndarray
19
20
21
+## JAX
22
23
24
+jax.numpy.moveaxis(a, source, destination) → ndarray
25
26
27
+## MXNet
28
29
30
+np.moveaxis(a, source, destination) → ndarray
31
32
33
+## PyTorch
34
35
36
+torch.moveaxis(input, source, destination) → Tensor
37
38
39
+Alias: `movedim`.
40
41
+## TensorFlow
42
43
44
+tf.experimental.numpy.moveaxis(a, source, destination) → Tensor
45
0 commit comments