How to handle a large binary vector?

조회 수: 4 (최근 30일)
Phan Dang Thoai
Phan Dang Thoai 2021년 7월 26일
댓글: Jan 2021년 8월 8일
I need to handle a frame which incluses 230400 bits. If I use an array to include element of 0 or 1 in unit8 type then I need memory of about 225 Mb. If I use an element of int64 then I need about 3.5 Mb. What is the best practice to handle this large binary vector. In either ways I mentions, it needs almost Mbs to store a frame.
Update: Actually I will process further with 230400 bits. There few blocks where this 230400 bits frame will go through. It is convenient for me to process as a vector of 230400 bits. But I am not sure how normally this problem to be handled in Simulink. Do we need to divide it and process each byte or a portion of 230400 bits each time.
  댓글 수: 4
James Tursa
James Tursa 2021년 7월 26일
You still haven't told us how you intend to process this downstream in your code. What exact computations are you doing with this?
Phan Dang Thoai
Phan Dang Thoai 2021년 8월 7일
Sorry James for the late reply/ I just want to know how do you process each bit as a single element? My block gets input as a vecor of 230400 bits, then arranged in a matrix of 75*3072 bits, then each couple of two bits are transfromed to a comlex number [(1-2*bit1)+j(1-2*bit2)]/sqrt(2). Bit1 is element (l,n) and bit2 is element (l,n+K), l: from 1 to 75, n: from 1 to 3072/2, K=3072/2.

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

답변 (1개)

Jan
Jan 2021년 7월 26일
UINT8 oder Logical use 1 byte per value. 225 MB are usually fine. You can store the bits packed in UINT8 also, but this is harder to access. So it depends on what you want to do with the data.
How do you import the data of the "frame"?
Maybe this helps:
Bit = PackBits([1,0,1,0,1,0,1,1, 1,1,1,0,1,1,1,0])
Bit = 1×2
213 119
UnpackBits(Bit)
ans = 1×16
1 0 1 0 1 0 1 1 1 1 1 0 1 1 1 0
function Byte = PackBits(Bit)
% Byte = PackBits(Bit)
% Input: Numerical vector which is 1 for a set bit and 0 otherwise.
% Treated as vector. NUMEL(Bit) must be a multiple of 8.
% Output: UINT8 using all 8 bits per Byte. LSB order.
% Failing in R2021a: bitshift(uint8(1), 0:7) * reshape(uint8(Bit), 8, [])
Byte = sum(bitshift(uint8(1), 0:7).' .* reshape(uint8(Bit), 8, []), 1);
end
function Bit = UnpackBits(Byte)
% Bits = UnpackBits(Byte)
% Input: UINT8 using all 8 bits per Byte. LSB order. Treated as vector.
% Output: UINT8, 1 for set bits, 0 otherwise. NUMEL(Bit) = 8*NUMEL(Byte)
% Failing in R2021a: bitshift(uint8(1), 0:7) * reshape(uint8(Bit), 8, [])
Byte = Byte(:).';
Bit = [bitget(Byte, 1); bitget(Byte, 2); bitget(Byte, 3); bitget(Byte, 4); ...
bitget(Byte, 5); bitget(Byte, 6); bitget(Byte, 7); bitget(Byte, 8)];
Bit = reshape(Bit, 1, []);
end
% License: Jan-DWYW: Do what you want with this code.
% Don't blame me and don't mention my name, if your code contains bugs.
@all readers: Do oyu have a more efficient idea for UnpackBits?
  댓글 수: 4
Phan Dang Thoai
Phan Dang Thoai 2021년 8월 7일
편집: Phan Dang Thoai 2021년 8월 7일
Yah, I know but how do you process each bit as a single element? My block gets input as a vecor of 230400 bits, then arranged in a matrix of 75*3072 bits, then each couple of two bits are transfromed to a comlex number [(1-2*bit1)+j(1-2*bit2)]/sqrt(2). Bit1 is element (l,n) and bit2 is element (l,n+K), l: from 1 to 75, n: from 1 to 3072/2, K=3072/2.
Jan
Jan 2021년 8월 8일
@Phan Dang Thoai: I cannot follow your descriptions.

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

카테고리

Help CenterFile Exchange에서 MATLAB에 대해 자세히 알아보기

제품


릴리스

R2020b

Community Treasure Hunt

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

Start Hunting!

Translated by