MATLAB - File I/O
Given the following MATLAB code snippet, what will be the output stored in
data?
fileID = fopen('numbers.txt', 'r');
data = textscan(fileID, '%d %f');
fclose(fileID);
Assuming numbers.txt contains:
10 3.14 20 2.71 30 1.62
