1. 建立图:利用子图 (subplot) 或坐标轴 (axes)
### gca自动生成:单图,简单,不可调 ### ax = gca() ### 利用子图:简单易用,不可重叠 ### ax1 = subplot(2,2,1) ax2 = subplot(2,2,2) ax3 = subplot(2,2,3) ax4 = subplot(2,2,4) # subplot(row,column,n) # 其中,row 为 行数 # column 为 列数 # n 为第几张图,位置如下: # ┌────┬────┐ # │ax1 │ax2 │ # ├────┼────┤ # │ax3 │ax4 │ # └────┴────┘ # ### 利用坐标轴:复杂,可控,可堆叠 ### ax = axes([0.1,0.1,0.8,0.8])
时间: 2024-11-05 23:32:29