How can I combine binary data in memory, and use fwrite for only one time to write all the data?

9 次查看(过去 30 天)
I need to write some large data in multiple loops. Each time, the data being written by fwrite is very small, and the frequent usage of fwrite seems to slow down my code. Here's an example:
% For loop starts:
fwrite(fid,dataA,'uint32');
fwrite(fid,dataB,'uint16');
fwrite(fid,dataC,'char');
...
% For loop ends
Is it possible if I combine dataA, dataB, and dataC together, so I can use fwrite for only one time, which will very likely be quicker.
  2 个评论
per isakson
per isakson 2021-8-7
编辑:per isakson 2021-8-7
The documentation on fwrite() says:
precision Class and size of values to write
'uint8' (default) | character vector | string scalar
which answers your question: No
per isakson
per isakson 2021-8-8
The documentation on fopen() says:
permission — File access type
[...]
'A' Open file for appending without automatic flushing of the current output buffer.
'W' Open file for writing without automatic flushing of the current output buffer.

请先登录,再进行评论。

采纳的回答

Walter Roberson
Walter Roberson 2021-8-7
You have a problem: you are using a binary file, but you are not using a constant number of bytes each time, and you are not putting in any kind of count or marker to know how large the variable-length data is.
You are not using a constant number of bytes each time because you are requesting 'char', and "The MATLAB®char type is not a fixed size, and the number of bytes depends on the encoding scheme associated with the file. Set encoding with fopen."
For example if your dataC includes '∑' then that is char(8721) which requires at least two bytes to write out.
We do not know what encoding you are using, so we have to ask fopen() what is being used, and then we have to ask unicode2native to translate the characters into a byte stream according to the encoding.
[~, ~, ~, encoding] = fopen(fid);
byte_A = typecast(dataA, 'uint8');
byte_B = typecast(dataB, 'uint8');
byte_C = unicode2native(dataC, encoding);
bytes = [byte_a, byte_B, byte_C];
fwrite(fid, bytes, 'uint8');
  2 个评论
Walter Roberson
Walter Roberson 2021-8-7
That's what the typecast() does.
dataA = randi([0 65535], 'uint16')
dataA = uint16 44301
typecast(dataA, 'uint8')
ans = 1×2
13 173
double(ans(2))*256+double(ans(1)) %cross-check
ans = 44301

请先登录,再进行评论。

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by