How to remove leading zeros in decimal representation?
8 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
A = [23, 15, 256, 75];
B= dec2bin(A)
B =
4×9 char array
'000010111'
'000001111'
'100000000'
'001001011'
But I'm interested in output B as;
10111
1111
100000000
1001011
I want to remove leading zeros?
0 commentaires
Réponse acceptée
Plus de réponses (1)
Abderrahim. B
le 10 Août 2022
Hi!
Use str2num.
A = [23, 15, 256, 75];
B= dec2bin(A)
B = str2num(B)
Hope this helps
Voir également
Catégories
En savoir plus sur Logical dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!