代码搜索:Distance
找到约 8,736 项符合「Distance」的源代码
代码结果 8,736
www.eeworm.com/read/397577/8037044
ico distance.ico
www.eeworm.com/read/332215/12773109
m distance.m
function result=Distance(a,b,D)
%求向量a,b之间的欧式距离
re=0;
for i=1:D
re=re+(a(i)-b(i))*(a(i)-b(i));
end
re=sqrt(re);
result=re;
www.eeworm.com/read/332215/12773128
asv distance.asv
function result=Distance(a,b,D)
%求向量a,b之间的欧式距离
re=0;
for i=1:D
re=re+(a(i)-b(i))*(a(i)-b(i));
end
re=sqrt(re);
result=re;
www.eeworm.com/read/143999/12824173
class distance.class
www.eeworm.com/read/143602/12856803
m distance.m
function dxy=distance(x1,x2,y1,y2)
dxy=sqrt((x2-x1)^2+(y2-y1)^2);
www.eeworm.com/read/244284/12875229
dat distance.dat
________ Method = pair_limiting _________
K1= 2 and K2= 3
_____ result _____
ijk[-1, 0, 0]: { 0.025, 2.722, 2.725} and {-0.016, 5.413, 5.443} => 3.825 A
ijk[-1, 0,-1]: { 0.025
www.eeworm.com/read/143024/12904205
m distance.m
function d=distance(x,xi)
d=sum((x-xi).^2);
d=sqrt(d);
www.eeworm.com/read/143018/12904269
cpp distance.cpp
/* distance.cpp 读取城市坐标信息,计算两两城市之间的距离,生成距离文件*/
#include
#include
#include
#include
using namespace std;
int main()
{
//申明和初始化变量
char city_name[20];
www.eeworm.com/read/143017/12904286
cpp distance.cpp
/* distance.cpp 读取城市坐标信息,计算两两城市之间的距离,生成距离文件*/
#include
#include
#include
#include
using namespace std;
int main()
{
//申明和初始化变量
char city_name[20];
www.eeworm.com/read/243419/12942572
m distance.m
% Program 6-3
% distance.m
%
% The calculation of distance between access point and access terminal.
%
% Input arguments
% bstn : coordinate of access point(x,y,z)
% mstn : coordinate of ac