Ask the user to select the desired data range from EXCEL using MATLAB

To display data from Excel in the same Excel file using Matlab, can you ask the user to select the desired range instead of defining the range in the Matlab code?

+4
source share
1 answer

Yes, XLSREAD offers the ability to interactively download data, although it is only Windows.

out = xlsread(fileName,-1); 
+1
source

Source: https://habr.com/ru/post/1439863/


All Articles