Deleting Spaces in an Hex Array

1 vue (au cours des 30 derniers jours)
tinkyminky93
tinkyminky93 le 2 Juin 2022
Commenté : Jan le 2 Juin 2022
Hello,
I have an array like
[AA BB CC DD EE] and i want to see it like [AABBCCDDEE]. how can i do it? Thank you
  2 commentaires
Walter Roberson
Walter Roberson le 2 Juin 2022
Is it a string() array? A cell array of character vectors? A categorical array? Or is it currently coded in terms of 0xAA in the input?
Jan
Jan le 2 Juin 2022
"Hex Array" is not existing class of Matlab. Is this a CHAR vector or String?
Then deleting spaces is easy:
A = 'AA BB CC DD EE'
B = A(~isapce(A))
% Or
B = A(A ~= ' ')

Connectez-vous pour commenter.

Réponses (0)

Catégories

En savoir plus sur Numeric Types dans Help Center et File Exchange

Produits


Version

R2021b

Community Treasure Hunt

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

Start Hunting!

Translated by