# Représentation graphique
plt.figure()
# plt.plot(t, Ec, '+', label='Ec')
plt.errorbar(t, Ec, xerr=ut, yerr=uEc, fmt='+', capsize=3, label='Ec')
# plt.plot(t, Ep, '+', label='Ep')
plt.errorbar(t, Ep, xerr=ut, yerr=uEp, fmt='+', capsize=3, label='Ep')
# plt.plot(t, Em, '+', label='Em')
plt.errorbar(t, Em, xerr=ut, yerr=uEc, fmt='+', capsize=3, label='Em')
plt.legend()
plt.show()