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:
parent
df6dace3b6
commit
9dfda81f52
|
|
@ -14,5 +14,5 @@ function invR = RotInv(R)
|
|||
% 0 0 1
|
||||
% 1 0 0
|
||||
|
||||
invR = R';
|
||||
end
|
||||
invR = transpose(R);
|
||||
end
|
||||
|
|
|
|||
Loading…
Reference in New Issue