diff options
author | Thomas White <taw@physics.org> | 2019-08-08 14:21:41 +0200 |
---|---|---|
committer | Thomas White <taw@physics.org> | 2019-08-16 10:26:59 +0200 |
commit | 0ee4e84678765760059dd1708439404709e70296 (patch) | |
tree | 5740f8cc1bce45b0e4265f3281c93aad18283e5a /libcrystfel/src | |
parent | df354511a0f4a923827e45edcafcb51343d10ea8 (diff) |
Add rtnl_mtx_is_identity() and rtnl_mtx_is_perm()
Diffstat (limited to 'libcrystfel/src')
-rw-r--r-- | libcrystfel/src/rational.c | 56 | ||||
-rw-r--r-- | libcrystfel/src/rational.h | 2 |
2 files changed, 58 insertions, 0 deletions
diff --git a/libcrystfel/src/rational.c b/libcrystfel/src/rational.c index fe87c034..ce286d7a 100644 --- a/libcrystfel/src/rational.c +++ b/libcrystfel/src/rational.c @@ -650,3 +650,59 @@ Rational rtnl_mtx_det(const RationalMatrix *m) return det; } + + +int rtnl_mtx_is_identity(const RationalMatrix *m) +{ + int i, j; + + if ( m->rows != m->cols ) return 0; + + for ( i=0; i<m->rows; i++ ) { + for ( j=0; j<m->cols; j++ ) { + + Rational v; + + v = rtnl_mtx_get(m, i, j); + + if ( i == j ) { + if ( rtnl_cmp(v, rtnl(1,1)) != 0 ) return 0; + } else { + if ( rtnl_cmp(v, rtnl_zero()) != 0 ) return 0; + } + + } + } + + return 1; +} + + +int rtnl_mtx_is_perm(const RationalMatrix *m) +{ + Rational det; + int i, j; + + /* Must be square */ + if ( m->rows != m->cols ) return 0; + + /* Determinant must be +1 or -1 */ + det = rtnl_mtx_det(m); + if ( (rtnl_cmp(det, rtnl(1,1)) != 0) + && (rtnl_cmp(det, rtnl(-1,1)) != 0) ) return 0; + + /* All components must be +1, -1 or 0 */ + for ( i=0; i<m->rows; i++ ) { + for ( j=0; j<m->cols; j++ ) { + + Rational v = rtnl_mtx_get(m, i, j); + + if ( (rtnl_cmp(v, rtnl(1,1)) != 0) + && (rtnl_cmp(v, rtnl(-1,1)) != 0) + && (rtnl_cmp(v, rtnl_zero()) != 0) ) return 0; + + } + } + + return 1; +} diff --git a/libcrystfel/src/rational.h b/libcrystfel/src/rational.h index e67c603a..8681bb06 100644 --- a/libcrystfel/src/rational.h +++ b/libcrystfel/src/rational.h @@ -100,6 +100,8 @@ extern void transform_fractional_coords_rtnl_inverse(const RationalMatrix *P, Rational *ans); extern void rtnl_mtx_print(const RationalMatrix *m); extern Rational rtnl_mtx_det(const RationalMatrix *m); +extern int rtnl_mtx_is_identity(const RationalMatrix *m); +extern int rtnl_mtx_is_perm(const RationalMatrix *m); #ifdef __cplusplus } |