tico
0.1
Mechanical Watch Terminal Timegrapher
inc
erf.h
Go to the documentation of this file.
1
#include <math.h>
2
#include <stdint.h>
3
#include <stdlib.h>
4
5
// NOLINTBEGIN(readability-identifier-length)
6
int
cmp_u64
(
const
void
* a,
const
void
* b);
7
/* Acklam inverse normal CDF approximation */
8
double
invnorm
(
double
p);
9
// NOLINTEND(readability-identifier-length)
10
11
struct
stats
12
{
13
double
stdev
;
14
double
mean
;
15
};
16
17
struct
stats
fit_erf
(double* samples,
size_t
size);
cmp_u64
int cmp_u64(const void *a, const void *b)
Definition:
erf.c:8
invnorm
double invnorm(double p)
Definition:
erf.c:25
fit_erf
struct stats fit_erf(double *samples, size_t size)
Definition:
erf.c:83
stats
Definition:
erf.h:12
stats::mean
double mean
Definition:
erf.h:14
stats::stdev
double stdev
Definition:
erf.h:13
Generated by
1.9.4