📄 invert_axes.py
字号:
#!/usr/bin/env python"""You can use decreasing axes by flipping the normal order of the axislimits"""from pylab import *t = arange(0.01, 5.0, 0.01)s = exp(-t)plot(t, s)xlim(5,0) # decreasing timexlabel('decreasing time (s)')ylabel('voltage (mV)')title('Should be growing...')grid(True)show()
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -