代码搜索:Distance
找到约 8,736 项符合「Distance」的源代码
代码结果 8,736
www.eeworm.com/read/366869/9795141
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/366869/9795171
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/267278/11187751
m distance.m
function dis = distance(lon,lat)
% this function returns the distance from certain position to satllite
% the satellite(SINOSAT-2) is above point of intersection of 92.2°E and
% the equator, orbit
www.eeworm.com/read/412717/11188221
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/335930/12490135
asv distance.asv
%distance.m
function dis = distance( arg1,arg2 )
s=size(arg1,2);
dis=0;
for i=4:s-1;
if (arg1(i)~=-1&&arg2(i)~=-1&&arg1(i)~=arg2(i));
dis=dis+1;
end
end
www.eeworm.com/read/335930/12490178
m distance.m
%distance.m
function dis = distance( arg1,arg2 )
s=size(arg1,2);
dis=0;
for i=4:s-1;
if (arg1(i)~=-1&&arg2(i)~=-1&&arg1(i)~=arg2(i));
dis=dis+1;
end
end
www.eeworm.com/read/135259/13944360
cpp distance.cpp
#include "stlexam.h"
#pragma hdrstop
/**************************************************************************
*
* distance.cpp - Example program for distance between two iterators.
*
www.eeworm.com/read/134619/13980100
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/134619/13980123
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