aboutsummaryrefslogtreecommitdiff
path: root/src/utils.c
diff options
context:
space:
mode:
authortaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2007-10-07 23:47:45 +0000
committertaw27 <taw27@bf6ca9ba-c028-0410-8290-897cf20841d1>2007-10-07 23:47:45 +0000
commit32b90c31701987b47000e398c8b534553004a4a2 (patch)
tree50429ae105593c9b37e4c1ee4517b20985fe3bf2 /src/utils.c
parente3a59f0de58d873837252d4decdd8f727392fad7 (diff)
Tidying up
git-svn-id: svn://cook.msm.cam.ac.uk:745/diff-tomo/dtr@154 bf6ca9ba-c028-0410-8290-897cf20841d1
Diffstat (limited to 'src/utils.c')
-rw-r--r--src/utils.c13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/utils.c b/src/utils.c
index 1e750a8..00fa351 100644
--- a/src/utils.c
+++ b/src/utils.c
@@ -4,7 +4,6 @@
* Utility stuff
*
* (c) 2007 Thomas White <taw27@cam.ac.uk>
- * Gordon Ball <gfb21@cam.ac.uk>
*
* dtr - Diffraction Tomography Reconstruction
*
@@ -70,18 +69,6 @@ double lambda(double V) {
}
-/* Renormalise a gsl_matrix to 0->1
- * Re-written to use gsl_matrix native functions */
-void matrix_renormalise(gsl_matrix *m) {
-
- double max,min;
-
- gsl_matrix_minmax(m,&min,&max);
- gsl_matrix_add_constant(m,0.-min);
- gsl_matrix_scale(m,1./(max-min));
-
-}
-
size_t skipspace(const char *s) {
size_t i;