Roundation In Binary Problem

1 vue (au cours des 30 derniers jours)
Turgut
Turgut le 6 Nov 2012
Hello everyone, I need a programme help. I think it will be obvious if I will examine it with an example.
Consider we have a matrix (6x6) in binary;
0 0 1 0 1 0
0 1 1 0 1 1
y= 1 0 0 0 1 0
0 1 0 1 1 0
0 0 0 1 0 1
0 0 0 0 0 1
I would like to make roundation. Means it will look the rows' one by one, if the last number is 1, it will add 1 to the number (in binary) and in the end it will return matrix 5x5 (for this example).
For this example:
0 0 1 0 1
0 1 1 1 0
y= 1 0 0 0 1
0 1 0 1 1
0 0 0 1 1
0 0 0 0 1
And it should do it for any matrix which is (nxn)
Thanks from now ;)
  2 commentaires
Walter Roberson
Walter Roberson le 6 Nov 2012
What code have you tried?
Image Analyst
Image Analyst le 6 Nov 2012
I don't understand. I've never heard of "roundation". What does "Add 1 to the number in binary" mean? If it's binary (logical) adding 1 will still leave it at 1 - it will get clipped. And how does doing that chop off the last column?

Connectez-vous pour commenter.

Réponse acceptée

Matt J
Matt J le 6 Nov 2012
Modifié(e) : Matt J le 6 Nov 2012
out = dec2bin( y(:,1:end-1)*2.^((n-2:-1:0).') + y(:,end) )-'0';
  1 commentaire
Turgut
Turgut le 6 Nov 2012
thank you so much it works perfect ;)

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Logical dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by