Info
La pregunta está cerrada. Vuélvala a abrir para editarla o responderla.
How to form a decimal vector for a cell array
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
hello, i have a cell with size 1*1624..now, i want to split these 1624 binary elements into each 8 binary elements ,and then these 8 elements must convert into a decimal number and store in an array..so,my final output must be an array with size 203(bcz 8*203=1624)..can you help me how to do???
Respuestas (1)
adi kul
el 8 de Feb. de 2017
Try to use reshape. Here is quick code:
m=1:1624;
n=reshape(m,203,8);
Modify it as per your requirements
1 comentario
La pregunta está cerrada.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!