Maybe better spectrogram labels

This commit is contained in:
ehpersonal38
2022-06-13 08:26:27 -04:00
parent 6b35cdff9b
commit 28652ee9fd
+1 -1
View File
@@ -28,7 +28,7 @@ if (($handle = fopen($RECS_DIR."/".date('F-Y')."/".date('d-l')."/".$newest_file.
$num = count($data); $num = count($data);
for ($c=0; $c < $num; $c++) { for ($c=0; $c < $num; $c++) {
$exp = explode(';',$data[$c]); $exp = explode(';',$data[$c]);
echo $exp[0].",".$exp[3].",".$exp[4]."\n"; echo (($exp[0]+$exp[1])/2).",".$exp[3].",".$exp[4]."\n";
} }
} }
$row++; $row++;