How i can convert binary elements of cell into decimal elements and store the results in array?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
Radhwan Jawad
el 23 de Nov. de 2022
Dear Matlab Community,
i want to convert a binary elements of the cell into decimal elements and store the results in array
MB =
1×10 cell array
'0101' '0011' '0111' '0100' '0110' '0101' '0110' '0111' '0110' '1111'
0 comentarios
Respuesta aceptada
Voss
el 23 de Nov. de 2022
MB = { '0101' '0011' '0111' '0100' '0110' '0101' '0110' '0111' '0110' '1111'};
D = bin2dec(MB)
2 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Data Type Conversion en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!