how to split a string (char value) with zero in front of it but showing the value in the matrix?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
saydur rahman
el 12 de Oct. de 2022
Editada: James Tursa
el 12 de Oct. de 2022
I have a string of '0100'. i want to split it into binary bit 0 1 0 0. how can i do that?? whenever i turn it into double or integer it turns out 1 0 0,
0 comentarios
Respuesta aceptada
Más respuestas (2)
John D'Errico
el 12 de Oct. de 2022
Editada: John D'Errico
el 12 de Oct. de 2022
MATLAB does NOT allow you to store or represent an integer as the number 0100. If you try, you will get 100. The leading zero goes away. I'm sorry, but it does, and nothing will make that change.
Your simple solution is to NOT convert it into a number. Work with it in terms of strings. Or if you prefer, as a vector of booleans, so 0 or 1 elements.
For example, could you search for leading zeros, counting how many? Yes.
0 comentarios
James Tursa
el 12 de Oct. de 2022
Editada: James Tursa
el 12 de Oct. de 2022
Two more ways:
S = '0100';
S=='0' % logical result
S-'0' % double result
0 comentarios
Ver también
Categorías
Más información sobre Characters and Strings 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!