blob: bc8184ca463ca9853581307da37821d8fb3b71a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
/*
* statistics.h
*
* Structure-factor statistics
*
* (c) 2007-2009 Thomas White <thomas.white@desy.de>
*
* integr_sim - Test relrod integration
*
*/
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
#ifndef STATISTICS_H
#define STATISTICS_H
double stat_r2(double *obs, double *calc, unsigned int *c, int size,
double *scalep);
#endif /* STATISTICS_H */
|