Convert cell to matrix

3 vues (au cours des 30 derniers jours)
Nimas
Nimas le 16 Oct 2022
Commenté : Nimas le 17 Oct 2022
Hello, i have 1x3 cell
'00000000' '00000010' '00000011'
how do i convert it into matrix form to be like this?
0 0 0 0 0 0 0 0
0 0 0 0 0 0 1 0
0 0 0 0 0 0 1 1
Thank you

Réponse acceptée

Jan
Jan le 16 Oct 2022
Modifié(e) : Jan le 16 Oct 2022
C = {'00000000', '00000010', '00000011'};
D = cat(1, C{:}); % Convert to matrix of type CHAR
E = D - '0' % Convert to double matrix
E = 3×8
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1
Subtracting CHAR values from each other converts them do their ASCII values:
double('01')
ans = 1×2
48 49
double('1') - double('0') is treated exactly as '1' - '0'.
  1 commentaire
Nimas
Nimas le 17 Oct 2022
Thank youu

Connectez-vous pour commenter.

Plus de réponses (1)

Walter Roberson
Walter Roberson le 16 Oct 2022
Modifié(e) : Walter Roberson le 16 Oct 2022
C = {'00000000', '00000010', '00000011'};
E = char(C) - '0'
E = 3×8
0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0 0 0 0 0 0 0 1 1
  1 commentaire
Nimas
Nimas le 17 Oct 2022
Thank youu

Connectez-vous pour commenter.

Catégories

En savoir plus sur Psychology dans Help Center et File Exchange

Tags

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by