MATLAB: Does MATLAB do this

transpose

I have my A matrix as-
A = [5 -3 7;1 0 -6;-4 8 9];
I want to show that
transpose(inv(A)) = inv(transpose(A))
but when i do,
transpose(inv(A)) == inv(transpose(A))
it shows as not equal, even though i know for a fact that it definitely is. Please help.

Best Answer

floating point error
isequal(round(transpose(inv(A)),15),round(inv(transpose(A)),15));
Related Question