Deleting Spaces in an Hex Array
1 view (last 30 days)
Show older comments
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 Comments
Jan
on 2 Jun 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 ~= ' ')
Answers (0)
See Also
Categories
Find more on Data Type Identification in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!