이 질문을 팔로우합니다.
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다.
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다.
How to improve bit reading process in Matlab?
조회 수: 2 (최근 30일)
이전 댓글 표시
Star Rats
2019년 9월 6일
I need to read a binary file and the Matlab coding is:
a = uint8(fread(fid,'ubit1')');
This is inefficient so I added a line below:
a = uint16(swapbytes(a));
But it doesn't help. Any other method to improve the bit reading process in Matlab?
댓글 수: 14
Walter Roberson
2019년 9월 6일
Is there any reason that you are not reading uint8? And possibly extracting bits afterwards? Either with bitget() or with a lookup table ?
Star Rats
2019년 9월 6일
When I tried:
a = (fread(fid,'uint8')');
It shows error: Index exceeds the number of array elements (3529175).
As my project is a decoder where each block contains different number of bit.
And I need to read the input file bit by bit in order to execute the function in each block.
Walter Roberson
2019년 9월 6일
bittable = (dec2bin(0:255, 8) - '0').';
a8 = fread(fid, 'uint8');
a = reshape( bittable(a8, :), [], 1);
Star Rats
2019년 9월 6일
Hi @Walter, I tried but I get an error: Index in position 1 is invalid. Array indices must be positive integers or logical values.
Walter Roberson
2019년 9월 6일
편집: Walter Roberson
2019년 9월 6일
a = reshape( bittable(double(a8)+1, :), [], 1);
Star Rats
2019년 9월 6일
I tried and it causes error: Index in position 1 exceeds array bounds (must not exceed 8).
So I tried:
a = reshape( bittable(double(a8), :), [], 1);
and it causes the previous error: Index in position 1 is invalid. Array indices must be positive integers or logical values.
Star Rats
2019년 9월 6일
Thanks @Walter. It runs without error. However, I wonder why it could not go into the loop of:
syncword = uint8([1 1 1 1 1 1 1 1 1 1 1 1 1 0 1]);
if(y(b:b+14) == syncword)
{
...
};
It could not scan if there exist the binary pattern of syncword.
Walter Roberson
2019년 9월 6일
Your sync_word is wrong. It should be
syn = ones(1,12);
isMP2 = 1; %0 for MP4
layer = zeros(1,2);
sync_word = [syn, isMP2, layer];
Same total number of bits, but you had 0 1 for layer instead of 0 0.
Star Rats
2019년 9월 6일
Hi @Walter, I think it is regardless of the syncword. It just couldn't go into the loop.
When I tested using the original coding, the if loop begins on the 1273th bit. But from the coding provided, it continues to scan the bit until the end without execute the if and for loop in between.
a = reshape( bittable(:,double(a8)+1), [], 1);
From the line above, is 'a' reading bit by bit or in an array form?
Walter Roberson
2019년 9월 6일
It is reading byte by byte and translating to bits.
There is a theoretical possibility that the order of bits within a byte is reversed but it seems unlikely.
Star Rats
2019년 9월 12일
Thanks @Walter, the code can be run but it does not improve the bit reading process. Is it possible to use the function GPUArray?
Walter Roberson
2019년 9월 12일
편집: Walter Roberson
2019년 9월 12일
Yes, you can use gpu array. However it will slow down your code.
답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Logical에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!오류 발생
페이지가 변경되었기 때문에 동작을 완료할 수 없습니다. 업데이트된 상태를 보려면 페이지를 다시 불러오십시오.
웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom(English)
아시아 태평양
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)