Effacer les filtres
Effacer les filtres

Info

Cette question est clôturée. Rouvrir pour modifier ou répondre.

How to form a decimal vector for a cell array

1 vue (au cours des 30 derniers jours)
Jyothi Alugolu
Jyothi Alugolu le 8 Fév 2017
Clôturé : Stephen23 le 8 Fév 2017
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???
  8 commentaires
Jan
Jan le 8 Fév 2017
@Jyothi: Please post a small example of the input with e.g. 16 elements and the wanted output.

Réponses (1)

adi kul
adi kul le 8 Fév 2017
Try to use reshape. Here is quick code:
m=1:1624;
n=reshape(m,203,8);
Modify it as per your requirements
  1 commentaire
Jyothi Alugolu
Jyothi Alugolu le 8 Fév 2017
no,i again need to convert each 8 binary element into a decimal number and store each decimal number in an array..

Cette question est clôturée.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by