Transposing your masterpiece
You've learned that transposing an array reverses the order of the array's axes. To transpose the axes in a different order, you can pass the desired axes order as arguments. You'll practice with the 3D Monet rgb_array
, loaded for you. numpy
has been imported as np
.
This exercise is part of the course
Introduction to NumPy
Exercise instructions
- Transpose the 3-D
rgb_array
so that the image appears rotated 90 degrees left and as a mirror image of itself.
Hands-on interactive exercise
Have a go at this exercise by completing this sample code.
# Transpose rgb_array
transposed_rgb = ____
plt.imshow(transposed_rgb)
plt.show()