summaryrefslogtreecommitdiff
path: root/docs/examples/userguide/memoryviews/transpose.pyx
blob: 8a53f71407f5f2c4b986a3227a94d7f93b80326d (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