MATLAB - File I/O
Identify the issue in this MATLAB code snippet for reading numeric data from a CSV file:
fid = fopen('values.csv', 'r');
data = fscanf(fid, '%f,');
fclose(fid);