blob: b2f87f1f1f44443bff34051b6ce7f484dfc302c3 (
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 <taw@physics.org>
*
* Part of CrystFEL - crystallography with a FEL
*
*/
#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 */
|