summaryrefslogtreecommitdiff
path: root/docs/examples/userguide/memoryviews/transpose.pyx
blob: 7611529c290bbf558110dfb6df74524418e0d615 (plain)
1
2
3
4
5
6
import numpy as np

array = np.arange(20, dtype=np.intc).reshape((2, 10))

cdef int[:, ::1] c_contig = array
cdef int[::1, :] f_contig = c_contig.T