I Have a .bin file with data in little-endian format 16 bit.
When I use
[Signal,count]=fread(fid,960000,'int16','l');
I get only integer data:
255
-1234
9455
25465
-3546
-6878
How to read this data to get them in complex form? I need to get:
255 - 1234i
9455 + 25465i
-3546 - 6878i