plt怎么逆时针旋转90度
时间: 2023-08-01 14:06:31 浏览: 98
将矩阵顺时针旋转90°
您可以使用Matplotlib库中的`plt.imshow()`函数来实现逆时针旋转90度的操作。具体实现如下:
```python
import matplotlib.pyplot as plt
import numpy as np
# 创建一个二维数组
arr = np.array([[1, 2, 3], [4, 5, 6], [7, 8, 9]])
# 将数组逆时针旋转90度
rotated_arr = np.rot90(arr)
# 使用imshow()函数绘制图形
plt.imshow(rotated_arr)
plt.show()
```
在上面的代码中,我们首先创建了一个二维数组`arr`,然后使用`np.rot90()`函数将数组逆时针旋转90度,最后使用`plt.imshow()`函数将旋转后的数组绘制成图像并显示出来。
阅读全文