tico 0.1
Mechanical Watch Terminal Timegrapher
analysis.h
Go to the documentation of this file.
1
2#pragma once
3
4#include "myarr.h"
5#include <stdio.h>
6
14void calculateTotalFromFile(size_t count,
15 FILE* rawfile,
16 size_t ArrayLength,
17 double threshold,
18 double rate);
19
21double getBeatError(const struct myarr* totalTick, double rate, int verbose);
22
void calculateTotalFromFile(size_t count, FILE *rawfile, size_t ArrayLength, double threshold, double rate)
Definition: analysis.c:85
double getBeatError(const struct myarr *totalTick, double rate, int verbose)
Definition: analysis.c:126
A struct to hold an array of integers or an array of doubles, along with the length of the arrays.
Definition: myarr.h:14