From: ImageAnalyst on
On Feb 3, 2:42 pm, "Tiger Smith" <loscl...(a)gmail.com> wrote:
> Thanks.
> So here sizeA is not in bytes but in elements?
----------------------------------------------------------------------------------
Correct. The number of bytes per element is specified in the
"precision" argument. Here's a usage example:

% Read two values at a time, skip one
% Returns six values into two rows
% (first two rows of 'alldata')

two_rows = fread(fid, [2, 3], '2*uint8', 1);

From: Tiger Smith on
Thank you so much.