aboutsummaryrefslogtreecommitdiff
path: root/src/statistics.h
diff options
context:
space:
mode:
authorThomas White <taw@bitwiz.org.uk>2010-05-04 07:38:31 -0700
committerThomas White <taw@bitwiz.org.uk>2010-05-04 08:56:17 -0700
commite447c2efb128823c93358c51a7d8f23636740f68 (patch)
tree68fb800a56d2e06cc6f3610b58a26ecc9bb6cb57 /src/statistics.h
parent07d406ce05760f633f72c2c3683dd3466423321a (diff)
process_hkl: Implement --scale option
Diffstat (limited to 'src/statistics.h')
-rw-r--r--src/statistics.h8
1 files changed, 6 insertions, 2 deletions
diff --git a/src/statistics.h b/src/statistics.h
index 5db7b045..fe7f57e1 100644
--- a/src/statistics.h
+++ b/src/statistics.h
@@ -16,7 +16,11 @@
#ifndef STATISTICS_H
#define STATISTICS_H
-double stat_r2(double *obs, double *calc, unsigned int *c, int size,
- double *scalep);
+extern double stat_scale_intensity(const double *ref1, const unsigned int *c1,
+ const double *ref2, const unsigned int *c2);
+
+extern double stat_r2(const double *ref1, const unsigned int *c1,
+ const double *ref2, const unsigned int *c2,
+ double *scalep);
#endif /* STATISTICS_H */