How to a='10101111' convert array b=[1,0,1,0,1,1,1,1]

1 visualización (últimos 30 días)
dmfwlansejr
dmfwlansejr el 18 de Dic. de 2020
Comentada: dmfwlansejr el 18 de Dic. de 2020
a is char type

Respuestas (2)

Bruno Luong
Bruno Luong el 18 de Dic. de 2020
>> a='10101111'
a =
'10101111'
>> a-'0'
ans =
1 0 1 0 1 1 1 1

Subhadeep Koley
Subhadeep Koley el 18 de Dic. de 2020
Editada: Subhadeep Koley el 18 de Dic. de 2020
charArray = '10101111';
newCharArray = double((charArray == '1'));

Categorías

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