Menu

[r134]: / trunk / htdocs / examples / text_themes.py  Maximize  Restore  History

Download this file

24 lines (18 with data), 529 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from matplotlib.matlab import *
font = {'fontname' : 'courier',
'color' : 'r',
'fontweight' : 'normal',
'fontsize' : 12}
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)
plot(t1, f(t1), 'bo', t2, f(t2), 'k')
title('Damped exponential decay', font, fontsize=14, color='r')
text(2, 0.65, 'cos(2 pi t) exp(-t)', font, color='k')
xlabel('time (s)', font)
ylabel('voltage (mV)', font)
savefig('text_themes')
show()
Want the latest updates on software, tech news, and AI?
Get latest updates about software, tech news, and AI from SourceForge directly in your inbox once a month.