Borrar filtros
Borrar filtros

Is there a command for/how to convert a binary number to binary vector?

4 visualizaciones (últimos 30 días)
Hi,
I got a binary number and i want to convert it to a binary vector like;
a=101010101010101010 to [1 0 1 0 1 0 1 0 ....]

Respuesta aceptada

Oleg Komarov
Oleg Komarov el 3 de Ag. de 2012
a = '101010101010101010';
a = a - '0';

Más respuestas (1)

Azzi Abdelmalek
Azzi Abdelmalek el 3 de Ag. de 2012
b=num2str(a);c=b(:);
result=str2num(c)'

Categorías

Más información sobre Data Type Conversion 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