Merge pull request #28 from zackwoodruff/patch-3

Update TransInv.m for Symbolic T Matrices
This commit is contained in:
HuanWeng 2020-07-09 23:40:37 -05:00 committed by GitHub
commit 93af2b5719
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -18,5 +18,5 @@ function invT = TransInv(T)
% 0 0 0 1 % 0 0 0 1
[R, p] = TransToRp(T); [R, p] = TransToRp(T);
invT = [R', -R' * p; 0, 0, 0, 1]; invT = [transpose(R), -transpose(R) * p; 0, 0, 0, 1];
end end