Feeds
提问
i want matching 2 matrix index value and if its matched add counter and if incorrect add error value
counter=0 error=0; a=[2, 1 ,3, 1 ,4, 5 ] b=[3 ,1, 4 ,2, 4 ,5] for i=1:length(a) for j=1:length(b) ...
7 years 前 | 1 个回答 | 0
1
个回答提问
can u give me mat lab code for dtw algorithm
compute d(i,j)=d(seq(i),seq(j)) initialize D(1,1)=d(1,1) for(i=2 to n1) D(i,1)=D(i-1,1)+d(i,1) for (j=2 to n2) D(1,j)=D(1...
8 years 前 | 1 个回答 | 0