필터 지우기
필터 지우기

Is there a way to get an 8 x 1 matrix instead of 8 x 3 using dec2bin or any other?

조회 수: 8 (최근 30일)
dec2bin (2 ^ n-1: -1: 0) - '0'
  댓글 수: 2
Image Analyst
Image Analyst 2021년 2월 27일
편집: Image Analyst 2021년 2월 27일
Give an example using some specific value of n and show what you got and what you want to get.
sawasawa
sawasawa 2021년 2월 27일
Thanks for the link.
This is what I get
n=3
b=dec2bin (2 ^ n-1: -1: 0) - '0'
ans =
1 1 1
1 1 0
1 0 1
1 0 0
0 1 1
0 1 0
0 0 1
0 0 0
But I want
111
110
101
100
011
010
001
000

댓글을 달려면 로그인하십시오.

채택된 답변

Walter Roberson
Walter Roberson 2021년 2월 27일
string(dec2bin (2 ^ n-1: -1: 0))
This will be considered an array. The entries will be string objects such as "011". The entries will not be numeric.
  댓글 수: 1
Walter Roberson
Walter Roberson 2021년 2월 27일
Perhaps you want
n=3
n = 3
b = (dec2bin (2 ^ n-1: -1: 0) - '0')*10.^(n-1:-1:0).'
b = 8×1
111 110 101 100 11 10 1 0
Note that if you do this, then the only way to get the leading zeros is to format it as text again.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Jan
Jan 2021년 2월 27일
편집: Jan 2021년 2월 27일
If you want 000 as output, remember, that this is not a valid decimal value. If you need the zeros for any reason, you have to stay at the char representation. Simply omit the -'0' part:
n = 3;
b = dec2bin(2 ^ n-1:-1:0)
The cannot be a 8x1 matrix.

카테고리

Help CenterFile Exchange에서 Data Type Conversion에 대해 자세히 알아보기

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by