Assume that I imported a 703*778 excel file into matlab workspace as a .mat file. Now,say I want to plot these data excluding the datas from two particular rows,say 250th & 500th row.The excel data is purely numerical.Here is the code that I tried:
data = xlsread('A.xlsx','Sheet1','');
b = data(A2:ACX249,A251:ACX499,A501:ACX778);
plot(b);
The 778 columns are named from A through ACX.
Where I have gone wrong with this code?