char to binary converting
Afficher commentaires plus anciens

I have this Char. I need to apply binary symmetric channel on it. So these chars must be binary. How Can I convert them ?
1 commentaire
Stephen23
le 8 Mar 2018
What does "binary" mean to you?
Réponses (1)
David Fletcher
le 8 Mar 2018
0 votes
bin2dec(string) will convert your string to a decimal equivalent. The underlying representation of the decimal number will be binary, but if you need an actual series of 1's and zero's then decimalToBinaryVector(decimalNumber) will convert the decimal to a binary vector, but note that that this will be a vector not a contiguous string of binary digits
Catégories
En savoir plus sur Data Type Conversion dans Centre d'aide et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!