필터 지우기
필터 지우기

how to define 4 bit Enumerated value and a nibble(4 bits) in Matlab

조회 수: 6 (최근 30일)
PTP
PTP 2016년 1월 20일
댓글: Walter Roberson 2016년 2월 1일
Hello,
how to define 4 bit Enumerated value and a nibble(4 bits) in Matlab

채택된 답변

Thorsten
Thorsten 2016년 1월 20일
Use a number between 0 and 15.
n = 8;
To convert to binary
nbin = dec2bin(n) - '0';
dec2bin return a string, the -'0' converts this string to an array of 0's and 1's.
  댓글 수: 5
PTP
PTP 2016년 2월 1일
Now i tried and added after this code
nbin = dec2bin(s) - '0' This gave me an array of 0s and 1s.
How to align this array into single line so that I can see it. Also how to separate and extract the first 48 bits for eg from the array.
Then how to send these bytes contained in nbin to another laptop via UDP and on another Laptop how to regenerate those Bytes into a String so that Humans can read it.
Walter Roberson
Walter Roberson 2016년 2월 1일
sBytes = uint8(s);
send sBytes. Reconstruct on the other side with
s = char(sBytes);
Do not bother converting to bits!!

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Dates and Time에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by