How to do inverse matrix (binary from ) in matlab ?

72 views (last 30 days)
z m
z m on 18 Nov 2017
Commented: z m on 19 Nov 2017
Hello, I have this matrix in binary from
Q =
0 0 1
1 0 0
0 1 0
and I wants to get the inverse matrix (binary form) in matlab? how to do it? i use this Q_inv=inv(Q) to get inverse Q
Q_inv =
0 1 0
0 0 1
1 0 0
Is this Q_inv=inv(Q) is correct for inverse binary matrix ? if no, how to do it?
  2 Comments
Roger Stafford
Roger Stafford on 18 Nov 2017
That is the true inverse of Q. If you doubt that try this:
Q*Q_inv
You will get the 3x3 identity matrix as a result. That proves that Q_inv is the correct inverse.

Sign in to comment.

Answers (2)

Image Analyst
Image Analyst on 18 Nov 2017
To invert values by turning 0s into 1s and 1s into 0s, use tilde:
Q = ~Q;
  2 Comments
Roger Stafford
Roger Stafford on 18 Nov 2017
@Image Analyst: I disagree. Even on zm's example with Q, doing the negation operation does not create the multiplicative inverse. Try multiplying Q*(~Q) and you will see.
Image Analyst
Image Analyst on 18 Nov 2017
Roger, in the image processing community, inverting a binary image means what I said. It's very very common jargon. People use it all the time.
It's not clear whether "z m" meant the inverse (or "complement") of a binary image matrix, OR the traditional matrix inverse like you'd do with any matrix. That's why I offered the alternative interpretation.

Sign in to comment.


Walter Roberson
Walter Roberson on 18 Nov 2017

Products

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!