I am currently working on a project on Long Short Term Memory for Sequence to Sequence and Sequence to label Classification on matlab.
I am using excel data set.
data = xlsread('energydata.xls');
XTrain=data(1:19735,1:1);%input data set
%YTrain=data(1:19735,28); %target data set
Please how can I convert the excel data set to cell aray and categorical arrays?