function jwrite(fid, data) numPixel = length(data); fprintf(fid, '%d\n', numPixel); for n=1:numPixel, fprintf(fid, '%f\n', data(n)); end