Giù Marcer
bdc12117a7
Some images and an article have also been added to the folder. The todo has been updated too as well as the readme.
23 lines
723 B
Python
Executable File
23 lines
723 B
Python
Executable File
#!/usr/bin/env python
|
||
|
||
import matplotlib.pyplot as plt
|
||
import numpy as np
|
||
import sys
|
||
|
||
calls, I_MC, σ_MC, I_MI, σ_MI, I_VE, σ_VE, chi = np.loadtxt(sys.stdin, unpack=True)
|
||
exact = 1.7182818285
|
||
|
||
plt.rcParams['font.size'] = 17
|
||
plt.figure()
|
||
plt.title('Plain MC', loc='right')
|
||
plt.ylabel('$I^{oss}$')
|
||
plt.xlabel('calls')
|
||
plt.axhline(y=exact, color='#c556ea', linestyle='-', label='Exact value')
|
||
|
||
plt.errorbar(calls, I_MC, linestyle='', marker='o', yerr=σ_MC, color='#92182b', label='Plain MC')
|
||
plt.errorbar(calls, I_MI, linestyle='', marker='o', yerr=σ_MI, color='black', label='MISER')
|
||
plt.errorbar(calls, I_VE, linestyle='', marker='o', yerr=σ_VE, color='gray', label='VEGAS')
|
||
|
||
plt.legend()
|
||
plt.show()
|