blob: 5db7b04553db51013c6bc8dac2d6093b30a27d41 (
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) 2006-2010 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 */
|