aboutsummaryrefslogtreecommitdiff
path: root/src/post-refinement.c
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2011-02-03 12:03:43 +0100
committerThomas White <taw@physics.org>2012-02-22 15:27:13 +0100
commit7198ffd1070a0bd9bca88ae1384aef0e562482a4 (patch)
tree2546168fe0cdaed04ce56caed245509011b82c81 /src/post-refinement.c
parent4398834ad2897c83987d8537ea305d84f6d7b64c (diff)
Move show_matrix_eqn() to utils.c
Diffstat (limited to 'src/post-refinement.c')
-rw-r--r--src/post-refinement.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/post-refinement.c b/src/post-refinement.c
index da7c86b6..b860bb42 100644
--- a/src/post-refinement.c
+++ b/src/post-refinement.c
@@ -266,20 +266,6 @@ double mean_partial_dev(struct image *image, struct cpeak *spots, int n,
}
-static void show_matrix_eqn(gsl_matrix *M, gsl_vector *v, int r)
-{
- int i, j;
-
- for ( i=0; i<r; i++ ) {
- STATUS("[ ");
- for ( j=0; j<r; j++ ) {
- STATUS("%+9.3e ", gsl_matrix_get(M, i, j));
- }
- STATUS("][ a%2i ] = [ %+9.3e ]\n", i, gsl_vector_get(v, i));
- }
-}
-
-
/* Perform one cycle of post refinement on 'image' against 'i_full' */
double pr_iterate(struct image *image, double *i_full, const char *sym,
struct cpeak **pspots, int *n)