So, I have a file that\'s designed to parse through a rather large csv file to weed out a handful of data points. Three of the values (out of 400,000+) within the file is li
Use dlmwrite with a precision argument, such as %i. The default delimiter is a comma, just like a CSV file.
%i
dlmwrite(filename, data, 'precision', '%i')