📄 subplot_demo.py
字号:
#!/usr/bin/env pythonfrom pylab import *def f(t): s1 = cos(2*pi*t) e1 = exp(-t) return multiply(s1,e1)t1 = arange(0.0, 5.0, 0.1)t2 = arange(0.0, 5.0, 0.02)t3 = arange(0.0, 2.0, 0.01)subplot(211)l = plot(t1, f(t1), 'bo', t2, f(t2), 'k--')setp(l, 'markerfacecolor', 'g')grid(True)title('A tale of 2 subplots')ylabel('Damped oscillation')#axis([0,5,-1,1])subplot(212)plot(t3, cos(2*pi*t3), 'r.')grid(True)xlabel('time (s)')ylabel('Undamped')#axis([0,2,-1,1])#savefig('subplot_demo')show()
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -