﻿# -*- coding: utf-8 -*-

import numpy as np
from matplotlib import pyplot as plt

f, Im= np.loadtxt("TP11_mesures_RLC.dat", skiprows=1, unpack=True)

plt.plot(f, Im,'+')
plt.xlabel('f(Hz)')
plt.ylabel('I_m(mA)')
plt.title("titre à modifier")
plt.show()



