Skip to content
Snippets Groups Projects
Commit 50b946dd authored by Andrew King's avatar Andrew King Committed by Nicola Vigano
Browse files

Fixed a typo bug in twintest part of GtAssembleVol3D - taken from in813 experience.


Signed-off-by: default avatarAndrew King <andrew.king@esrf.fr>
parent 67c0a983
No related branches found
No related tags found
No related merge requests found
...@@ -652,7 +652,7 @@ classdef GtAssembleVol3D < handle ...@@ -652,7 +652,7 @@ classdef GtAssembleVol3D < handle
% need to search symmetry equivelents for the minimum misorientation % need to search symmetry equivelents for the minimum misorientation
rot_offset = zeros(1, 24); rot_offset = zeros(1, 24);
for k = 1:length(symm) for k = 1:length(obj.symm)
g1equiv = g1 * obj.symm(k).g3; g1equiv = g1 * obj.symm(k).g3;
netg = g1equiv \ g2; netg = g1equiv \ g2;
rot_offset(k) = sum(diag(netg)); rot_offset(k) = sum(diag(netg));
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment