Py学习  »  Python

Python子块3以2x2矩阵(金字塔)绘制

searchingforanswers • 5 年前 • 1709 次点击  

如果我使用 plt.subplot2grid colspan=2 这里是我当前的代码:

ax1.subplot2grid((2,2), (0,0))
ax1.plot(m[:,0], m[:,8], color = "0")
ax2.subplot2grid((2,2), (0,1))
ax2.plot(m[:,0], m[:,9], color = "0")
ax3.subplot2grid((2,2), (1,0))
ax3.plot(m[:,0], m[:,10], color = "0", colespan=2)

enter image description here

Python社区是高质量的Python/Django开发社区
本文地址:http://www.python88.com/topic/56032
 
1709 次点击  
文章 [ 2 ]  |  最新文章 5 年前