10 lines
171 B
Python
10 lines
171 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
from pylab import *
|
||
|
import sys
|
||
|
|
||
|
x, y = loadtxt(sys.stdin, unpack=True)
|
||
|
title('Landau distribution', loc='right')
|
||
|
plot(x, y, color='#92182b')
|
||
|
show()
|