代码搜索:dtw
找到约 153 项符合「dtw」的源代码
代码结果 153
www.eeworm.com/read/189495/8467331
dtw
#!/bin/csh
# %Z%%M% %I% %E%
#
# Date: August 21, 1990
# Author: Robin Miller
#
# Description:
#
# This script is used to write test patterns to the specified
# device. The format after this writing i
www.eeworm.com/read/431418/8677636
m dtw.m
function dist = dtw(t,r)
n = size(t,1);
m = size(r,1);
% 帧匹配距离矩阵
d = zeros(n,m);
for i = 1:n
for j = 1:m
d(i,j) = sum((t(i,:)-r(j,:)).^2);
end
end
% 累积距离矩阵
D = ones(n,m) * realmax;
www.eeworm.com/read/382300/9038476
java dtw.java
// Decompiled by Jad v1.5.7g. Copyright 2000 Pavel Kouznetsov.
// Jad home page: http://www.geocities.com/SiliconValley/Bridge/8617/jad.html
// Decompiler options: packimports(3) fieldsfirst ansi
www.eeworm.com/read/182776/9191509
m dtw.m
function dist = dtw(t,r)
n = size(t,1);
m = size(r,1);
% 帧匹配距离矩阵
d = zeros(n,m);
for i = 1:n
for j = 1:m
d(i,j) = sum((t(i,:)-r(j,:)).^2);
end
end
% 累积距离矩阵
D = ones(n,m) * realmax;
www.eeworm.com/read/182429/9204236
m dtw.m
function dist = dtw(t,r)
n = size(t,1);
m = size(r,1);
% 帧匹配距离矩阵
d = zeros(n,m);
for i = 1:n
for j = 1:m
d(i,j) = sum((t(i,:)-r(j,:)).^2);
end
end
% 累积距离矩阵
D = ones(n,m) * realmax;
www.eeworm.com/read/178248/9412317
asv dtw.asv
function dist=dtw(test,ref)
%dwt高效算法
global x y_min y_max
global t r
global D d
global m n
t=test;
r=ref;
n=size(t,1);
m=size(r,1);
d=zeros(m,1);
D=ones(m,1)*realmax;
D(1)=0;
%如果两个模
www.eeworm.com/read/178248/9412323
m dtw.m
function dist=dtw(test,ref)
%dwt高效算法
global x y_min y_max
global t r
global D d
global m n
t=test;
r=ref;
n=size(t,1);
m=size(r,1);
d=zeros(m,1);
D=ones(m,1)*realmax;
D(1)=0;
%如果两个模
www.eeworm.com/read/351309/10659059
mexlx dtw.mexlx
www.eeworm.com/read/351309/10659073
mexsol dtw.mexsol
www.eeworm.com/read/351309/10659148