how to convert text into binary
Ältere Kommentare anzeigen
how to convert text into binary
4 Kommentare
Image Analyst
am 21 Sep. 2014
Like a binary image? Or like using dec2bin('abc')? As you know everything in digital computers is ultimately already binary , so since your text is already in binary we need to know what you really mean.
Stephen23
am 22 Sep. 2014
Or perhaps convert 'text' to 'binary':
function out = text2binary(txt)
out = regexprep(txt,'text','binary');
end
Walter Roberson
am 27 Dez. 2015
Omar Ibrahim comments
i need bin2dec convert
Walter Roberson
am 27 Dez. 2015
Omar:
dec2bin('abc') - '0'
Antworten (1)
Nikesh Bajaj
am 3 Jan. 2016
0 Stimmen
Kategorien
Mehr zu Data Type Conversion finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!