码迷,mamicode.com
首页 > 其他好文 > 详细

多面板图形

时间:2020-06-14 12:45:50      阅读:70      评论:0      收藏:0      [点我收藏+]

标签:mat   技术   plt   http   image   add   figure   mamicode   ima   

import matplotlib.pyplot as plt
import numpy as np
fig = plt.figure()
ax = fig.add_axes([0.1,0.1,0.8,0.8])
inner_ax = fig.add_axes([0.6,0.6,0.25,0.25])
x1 = np.arange(10)
y1 = np.array([1,2,7,1,5,2,4,2,3,1])
x2 = np.arange(10)
y2 = np.array([1,3,4,5,4,5,2,6,4,3])
ax.plot(x1,y1)
inner_ax.plot(x2,y2)
plt.show()

 

技术图片

 

多面板图形

标签:mat   技术   plt   http   image   add   figure   mamicode   ima   

原文地址:https://www.cnblogs.com/wei23/p/13124167.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!