-
Notifications
You must be signed in to change notification settings - Fork 0
matplotlib
M. Bai edited this page Nov 16, 2020
·
1 revision
plt.figure()
#subplot(r,c) provide the no. of rows and columns
f, axarr = plt.subplots(4,1)
# use the created array to output your multiple images. In this case I have stacked 4 images vertically
axarr[0].imshow(v_slice[0])
axarr[1].imshow(v_slice[1])
axarr[2].imshow(v_slice[2])
axarr[3].imshow(v_slice[3])
test page footer