#include<bibli_fonctions.h>

/* Graphique avec Python matplotlib a partir d'un fichier de donnees */

int main(){
  ostringstream pyth;
  pyth
    << "A = loadtxt('valeurs.dat')\n"
    << "plot(A[:,0], A[:,1])\n"
    ;
  make_plot_py(pyth);
  return 0;
}
