Read Entropy tiff flies into Matlab

Maybe the data type was changed from float to integer during the conversion.

Did you try opening the img file directly?

fid = fopen('fileName.img');
data = fread(fid, dataDimensions, precision)
close(fid)