代码搜索:Distance
找到约 8,736 项符合「Distance」的源代码
代码结果 8,736
www.eeworm.com/read/482846/6614578
hpp distance.hpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti
www.eeworm.com/read/477588/6728840
m distance.m
%将接收信号强度转化为距离
%发射信号经衰减到达接收端,根据接收信号的强弱计算T-R距离
%接收功率Pr本应由实际测量而得
%但在没有实验设备的情况下,也可以利用假定的未知节点得出模拟测量值
%方法为:根据假定的未知节点位置,各信标节点得到精确的接收功率
%在此基础上加上高斯随机变量作为环境干扰,将此接收功率作为Pr的测量值
%再将Pr的测量值作为RSSI来求出T-R距离
% ...
www.eeworm.com/read/477762/6733853
f distance.f
subroutine distance(curcom,dist)
implicit none
real*8 current,currenta,currentb,bbmin,fi
real*8 current0,currentest,a,d,bohr,pi
real*8 curcom,dist,dista,distb,distest,dif,coc
common/sph/a
www.eeworm.com/read/265045/11284674
m distance.m
function dis=distance(a,b)
diff=a-b;
dis=sqrt(dot(diff,diff));
www.eeworm.com/read/402273/11539901
cpp distance.cpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti
www.eeworm.com/read/402273/11539913
hpp distance.hpp
/* The following code example is taken from the book
* "The C++ Standard Library - A Tutorial and Reference"
* by Nicolai M. Josuttis, Addison-Wesley, 1999
*
* (C) Copyright Nicolai M. Josutti
www.eeworm.com/read/255944/12044269
m distance.m
function d = distance(inputcities)
% DISTANCE
% d = DISTANCE(inputcities) calculates the distance between n cities as
% required in a Traveling Salesman Problem. The input argument has two rows
%
www.eeworm.com/read/150238/12303241
m distance.m
function dst = distance(x,y,N,type,opt)
% DISTANCE - distance computation y = distance(x,y,N,type,option)
%
% This function computes the distance between vectors x and y.
% The following distanc