I have written the following code:
%LDA
file = xlsread('LDA.xlsx');
Graph=[];
for c=1:840
for i=1:17
for j=18:34
Graph=[Graph,file(i,c),file(j,c)];
end
end
end
lda=resubLoss(Graph)
but the func resubLoss does not work(Undefined function or variable 'resubLoss'.) I understand that it might be becuse of this is not a data set.
What i need is to calclute the same thing that this func does on my vector .
thank you.