Roundation In Binary Problem
Mostrar comentarios más antiguos
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 comentarios
Walter Roberson
el 6 de Nov. de 2012
What code have you tried?
Image Analyst
el 6 de Nov. de 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?
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Logical en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!