17 lines
323 B
Python
17 lines
323 B
Python
import math
|
|
import numpy as np
|
|
import matplotlib.pyplot as plt
|
|
import struct
|
|
|
|
#"C:\Users\quent\OneDrive\Bureau\ENSC\TransD\Framboisier\02400001.TXT"
|
|
#! /usr/bin/env python3
|
|
# -*- coding: UTF-8 -*-
|
|
|
|
i=0
|
|
for i in []:
|
|
x = np.array([])
|
|
y = np.array([])
|
|
plt.plot(x,y)
|
|
|
|
plt.show() #affiche le tableau à l'écran
|