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.

Diese Übung ist Teil des Kurses

Introduction to NumPy

Kurs anzeigen

Anleitung zur Übung

  • Transpose the 3-D rgb_array so that the image appears rotated 90 degrees left and as a mirror image of itself.

Interaktive Übung zum Anfassen

Probieren Sie diese Übung aus, indem Sie diesen Beispielcode ausführen.

# Transpose rgb_array
transposed_rgb = ____
plt.imshow(transposed_rgb)
plt.show()