Effacer les filtres
Effacer les filtres

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

54 vues (au cours des 30 derniers jours)
z m
z m le 18 Nov 2017
Commenté : z m le 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 commentaires
Roger Stafford
Roger Stafford le 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.
z m
z m le 19 Nov 2017
Thank you.

Connectez-vous pour commenter.

Réponses (2)

Image Analyst
Image Analyst le 18 Nov 2017
To invert values by turning 0s into 1s and 1s into 0s, use tilde:
Q = ~Q;
  2 commentaires
Roger Stafford
Roger Stafford le 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 le 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.

Connectez-vous pour commenter.


Walter Roberson
Walter Roberson le 18 Nov 2017

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by