Update RotInv.m for Symbolic T Matrices

Changing R' to transpose(R) allows you to use it on symbolic matrices by taking the non-conjugate transpose.
This commit is contained in:
zackwoodruff 2019-11-18 18:12:11 -06:00 committed by GitHub
parent df6dace3b6
commit 9dfda81f52
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -14,5 +14,5 @@ function invR = RotInv(R)
% 0 0 1
% 1 0 0
invR = R';
end
invR = transpose(R);
end