Unary minus of coordinate trace.
-t
uminus(t)
The unary minus of a coordinate trace changes all plus coordinate directions to minus, and vice versa.
>> t=imat_ctrace('5y', '6rx', '3z', '4x-')
t =
'5Y+'
'6RX+'
'3Z+'
'4X-'
>> -t
ans =
'5Y-'
'6RX-'
'3Z-'
'4X+'
>>