writing binary number with specific length (MATLAB)

조회 수: 3 (최근 30일)
high speed
high speed 2022년 11월 30일
답변: David Hill 2022년 11월 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