代码搜索:Distance
找到约 8,736 项符合「Distance」的源代码
代码结果 8,736
www.eeworm.com/read/128329/14304893
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end
www.eeworm.com/read/216045/15028666
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end
www.eeworm.com/read/213940/15121922
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end
www.eeworm.com/read/210160/15205736
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end
www.eeworm.com/read/207443/15271797
m metric.m
%*************************************************************************%
function distance = metric(x,y)
if x == y
distance = 0;
else
distance = 1;
end
%*****************************
www.eeworm.com/read/474040/6828941
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end
www.eeworm.com/read/194440/8193966
m distcum.m
function s=distcum(x,y)
% s=distcum(x,y)
% s=distcum(x)
%
% If the first form is used, x and y represent the 2-D coordinates of a set of
% points. If the second form is used, x represents an incremen
www.eeworm.com/read/192895/8267480
h gjk.h
/* Header file for the Oxford version of Gilbert, Johnson and
Keerthi's minimum distance routine.
Version 2.4, July 1998, (c) Stephen Cameron 1996, 1997, 1998
*/
#include
#include
www.eeworm.com/read/173140/9670946
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end
www.eeworm.com/read/414455/11111274
m metric.m
function distance=metric(x,y)
if x==y
distance=0;
else
distance=1;
end