analistica/ex-1/pdf-plot.py

10 lines
171 B
Python
Raw Normal View History

2020-03-06 02:24:32 +01:00
#!/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()