writing binary number with specific length (MATLAB)

3 Ansichten (letzte 30 Tage)
high speed
high speed am 30 Nov. 2022
Beantwortet: David Hill am 30 Nov. 2022
Dear,
I have this simple program:
n=3;
A=0.2;
B=[0.7 0.5 0.3 0.1 0.1 0.3 0.5 0.7];
K=dec2bin(B/A);
The output K is of type 8x2 with results:
val =
'11'
'10'
'01'
'00'
'00'
'01'
'10'
'11'
I want to obtain K with type 8x3 it means according to 'n' to obtain these results:
val =
'011'
'010'
'001'
'000'
'000'
'001'
'010'
'011'

Akzeptierte Antwort

David Hill
David Hill am 30 Nov. 2022
n=3;
A=0.2;
B=[0.7 0.5 0.3 0.1 0.1 0.3 0.5 0.7];
K=dec2bin(B/A,3)
K = 8×3 char array
'011' '010' '001' '000' '000' '001' '010' '011'

Weitere Antworten (0)

Kategorien

Mehr zu Get Started with MATLAB finden Sie in Help Center und File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by