forked from rougier/numpy-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreshapes.py
More file actions
40 lines (29 loc) · 1008 Bytes
/
Copy pathreshapes.py
File metadata and controls
40 lines (29 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
import numpy as np
import matplotlib.pyplot as plt
def show_slice(Z, name):
rows,cols = Z.shape
fig = plt.figure(figsize=(cols/4.,rows/4.), dpi=72)
ax = plt.subplot(111)
A = np.arange(rows*cols).reshape(rows,cols)
plt.imshow(Z, cmap='Purples', extent=[0,cols,0,rows],
vmin=0, vmax=1, interpolation='nearest', origin='upper')
plt.xticks([]), plt.yticks([])
for pos in ['top', 'bottom', 'right', 'left']:
ax.spines[pos].set_edgecolor('k')
ax.spines[pos].set_alpha(.25)
plt.savefig('../figures/%s' % name, dpi=72)
# plt.show()
rows,cols = 3, 4
Z = np.zeros((rows,cols))+.1
Z[2,2] = 1
show_slice(Z, 'reshape-Z.png')
Z = Z.reshape(4,3)
show_slice(Z, 'reshape-Z-reshape(4,3).png')
Z = Z.reshape(12,1)
show_slice(Z, 'reshape-Z-reshape(12,1).png')
Z = Z.reshape(1,12)
show_slice(Z, 'reshape-Z-reshape(1,12).png')
Z = Z.reshape(6,2)
show_slice(Z, 'reshape-Z-reshape(6,2).png')
Z = Z.reshape(2,6)
show_slice(Z, 'reshape-Z-reshape(2,6).png')