MATLAB - File I/O
Consider this MATLAB code snippet:
If
T = readtable('data.csv');
writetable(T, 'output.csv');If
data.csv contains mixed numeric and text data, what is a common error to watch for?