aboutsummaryrefslogtreecommitdiff
path: root/libcrystfel/src/integer_matrix.h
diff options
context:
space:
mode:
authorThomas White <taw@physics.org>2019-03-12 14:31:49 +0100
committerThomas White <taw@physics.org>2019-03-12 14:31:49 +0100
commit4fdfdfa0eef645e290a8ab98c9ff6507c2bc1f5f (patch)
tree4993f3ee9bb3f001d19a5c833d060a357e7db4d6 /libcrystfel/src/integer_matrix.h
parentee77fdf67c9bb5430c7a8eb5005673e507964931 (diff)
Rename intmat_intvec_mult to transform_indices
Diffstat (limited to 'libcrystfel/src/integer_matrix.h')
-rw-r--r--libcrystfel/src/integer_matrix.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/libcrystfel/src/integer_matrix.h b/libcrystfel/src/integer_matrix.h
index 2da2328a..9a2e4ce2 100644
--- a/libcrystfel/src/integer_matrix.h
+++ b/libcrystfel/src/integer_matrix.h
@@ -71,8 +71,7 @@ extern IntegerMatrix *intmat_create_3x3(signed int m11, signed int m12, signed i
signed int m31, signed int m32, signed int m33);
/* Matrix-vector multiplication */
-extern signed int *intmat_intvec_mult(const IntegerMatrix *m,
- const signed int *vec);
+extern signed int *transform_indices(const IntegerMatrix *P, const signed int *hkl);
/* Matrix-matrix multiplication */
extern IntegerMatrix *intmat_intmat_mult(const IntegerMatrix *a,