Manipulate binary element in matrix
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
zahrein yaacob
el 6 de Jul. de 2019
Comentada: zahrein yaacob
el 9 de Jul. de 2019
Hi If i have binary digits in the element.How do i choose element bit 5 to bit 8.
A= 010101010
This A is in binary format.
0 comentarios
Respuesta aceptada
KALYAN ACHARJYA
el 6 de Jul. de 2019
Editada: KALYAN ACHARJYA
el 6 de Jul. de 2019
bin_num=str2num(A);
bin_array=num2str(bin_num)-'0';
bits_selection=bin_array(5:8)
or
bin_data=A-'0'
bits_selection=bin_data(5:8)
Más respuestas (0)
Ver también
Categorías
Más información sobre Get Started with MATLAB en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!