Borrar filtros
Borrar filtros

A substitute instead of strcat()

3 visualizaciones (últimos 30 días)
ck
ck el 13 de Sept. de 2016
Respondida: Walter Roberson el 13 de Sept. de 2016
I have binary data with one in each row as below:
0
0
1
0
1
1
and so on, i need to concatenate them into eight bits each like: 01010000 01011111 00000000 ..... , i could think of other way than using strcat() which makes it a character. How can i concatenate them other than strcat()?
Thank you.

Respuestas (1)

Walter Roberson
Walter Roberson el 13 de Sept. de 2016
reshape(YourVector, 8, []).'

Categorías

Más información sobre Characters and Strings en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by