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년 초과 전 | 답변 수: 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년 전 | 답변 수: 1 | 0