Prev: question about recent changes in 'eigs' and use on near-singularmatrices
Next: matlab compiler error mbuild -setup
From: ImageAnalyst on 3 Feb 2010 15:46 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 3 Feb 2010 18:39
Thank you so much. |