필터 지우기
필터 지우기

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
Jianfei
Jianfei 2021년 8월 7일
Thank you for you answer. Is there any method to translate uint32 and uint16 to uint8?
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