How to convert a string into row vector?
15 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Ammy
le 11 Mar 2022
Réponse apportée : Image Analyst
le 11 Mar 2022
a = 753;
b= dec2bin(a);
b= '1011110001'
How can I obtain b as a row vector [1 0 1 1 1 1 0 0 0 1]?
0 commentaires
Réponse acceptée
Image Analyst
le 11 Mar 2022
Please note that the other answers will not include the leading zero if there is one.
You didn't specify if you want leading zero(s) if there are any. You can specify the number of bits in dec2bin if you want. For example this (dec2bin(a, 8)) is what you might do
a = 103;
b = dec2bin(a)-'0' % Does not include leading zeros for an 8 bit number
c = dec2bin(a, 8)-'0' % Does include leading zeros for an 8 bit number
Did you want leading zeros or not?
0 commentaires
Plus de réponses (1)
Arif Hoq
le 11 Mar 2022
try this:
a = 753;
b= dec2bin(a)
% b= '1011110001'
format longG
output=str2double(b)
3 commentaires
Voir également
Catégories
En savoir plus sur Data Type Conversion 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!