gdtest.py

来自「非原创。很好的python例子」· Python 代码 · 共 35 行

PY
35
字号
#!/usr/bin/env pythonimport matplotlibmatplotlib.use('GD')from pylab import *def f(t):    s1 = cos(2*pi*t)    e1 = exp(-t)    return multiply(s1,e1)t1 = arange(0.0, 5.0, .1)t2 = arange(0.0, 5.0, 0.02)t3 = arange(0.0, 2.0, 0.01)if 1:    subplot(211)    l = plot(t1, f(t1), 'k-^')    setp(l, 'markerfacecolor', 'r')    xlim(0,5)    title('A tale of 2 subplots', fontsize=12)    ylabel('Signal 1', fontsize=10)    subplot(212)    l = plot(t1, f(t1), 'k->')    xlim(0,5)    ylabel('Signal 2', fontsize=10)    xlabel('time (s)', fontsize=10,  fontname='Courier')ax = gca()#savefig('gdtest', dpi=150)show()

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?