writing binary number with specific length (MATLAB)

1 次查看(过去 30 天)
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'

采纳的回答

David Hill
David Hill 2022-11-30
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'

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Get Started with MATLAB 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by