Filter löschen
Filter löschen

How to improve bit reading process in Matlab?

1 Ansicht (letzte 30 Tage)
Star Rats
Star Rats am 6 Sep. 2019
Kommentiert: Star Rats am 18 Jul. 2020
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 Kommentare
Walter Roberson
Walter Roberson am 12 Sep. 2019
Bearbeitet: Walter Roberson am 12 Sep. 2019
Yes, you can use gpu array. However it will slow down your code.
Star Rats
Star Rats am 18 Jul. 2020
Thanks @Walter for your help. You are definitely a Matlab magician!

Melden Sie sich an, um zu kommentieren.

Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by