MATLAB - File I/O
What will be the output of the following MATLAB code?
Assuming 'numbers.csv' contains:
1,2,3
4,5,6
7,8,9
data = readmatrix('numbers.csv');
disp(data(2,3));Assuming 'numbers.csv' contains:
1,2,3
4,5,6
7,8,9
