Tableau une seul courbe
This commit is contained in:
parent
c0e70cec4e
commit
8906063068
BIN
Code-C/main
BIN
Code-C/main
Binary file not shown.
|
@ -9,14 +9,14 @@ import sys
|
|||
#! /usr/bin/env python3
|
||||
# -*- coding: UTF-8 -*-
|
||||
|
||||
csv_reader = csv.reader(open('rawData.csv')) #Ouvre le fichier .csv
|
||||
csv_reader1 = csv.reader(open('rawData.csv')) #Ouvre le fichier .csv
|
||||
bigx = float(-sys.maxsize-1)
|
||||
bigy = float(-sys.maxsize-1)
|
||||
smallx = float(sys.maxsize)
|
||||
smally = float(sys.maxsize)
|
||||
capteurs = []
|
||||
|
||||
for ligne in csv_reader:
|
||||
for ligne in csv_reader1:
|
||||
capteurs.append(ligne)
|
||||
if float(ligne[0]) > bigx:
|
||||
bigx = float(ligne[0])
|
||||
|
|
Loading…
Reference in a new issue