25 lines
608 B
Python
25 lines
608 B
Python
import math
|
|
from os import link
|
|
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 -*-
|
|
link = ""
|
|
|
|
f = open(link , "rb")#ouvertuture du fichier txt traiter
|
|
taille = 100
|
|
freq = 250000
|
|
periode = 1 / freq
|
|
temps = periode * taille
|
|
resultat = np.zeros(taille)
|
|
for i in range(taille):
|
|
resultat[i] = (f.readline())^2 #on sait que chaque ligne corespond à une mesure
|
|
somme = 0
|
|
for i in range(taille-1):
|
|
somme = (resultat[i] + resultat[i+1]) / 2
|
|
res = somme / temps
|
|
print(res) |