How to handle a large binary vector?

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

请先登录,再进行评论。

类别

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