Filter löschen
Filter löschen

Real Value Conversion to Binary with Range

5 Ansichten (letzte 30 Tage)
b
b am 11 Mai 2012
Again, i write on the same topic. Sorry for that.
Within the range values (e.g. [0,25]) how can i convert my real numbers to binary digits. The number of bits must be 15..
Thanks

Akzeptierte Antwort

Walter Roberson
Walter Roberson am 11 Mai 2012
dec2bin(round(Values * 2^10), 15) - '0'

Weitere Antworten (1)

b
b am 11 Mai 2012
Thanks again.
Do you have any idea to convert the binary digits to real values??
  1 Kommentar
Walter Roberson
Walter Roberson am 11 Mai 2012
Let B be the binary digits. Then
bin2dec(char(B + '0')) ./ 2^10

Melden Sie sich an, um zu kommentieren.

Kategorien

Mehr zu Data Type Conversion finden Sie in Help Center und File Exchange

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by