代码搜索:Distance
找到约 8,736 项符合「Distance」的源代码
代码结果 8,736
www.eeworm.com/read/125529/14488796
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
www.eeworm.com/read/226027/14503000
txt distance.txt
Everyone is talking about "closeness" to me. I mean Judy and Monica who in Friends. People care about it because it is scarce, although we hang out with others a lot. But, just feel others far away, a
www.eeworm.com/read/124760/14545492
c distance.c
/* .c freeware xhunga@tiscali.fr
*/
/* --------------------------------- INCLUDES ------------------------------- */
#include "y_ahfile.h"
/* ----------
www.eeworm.com/read/211373/15182297
m distance.m
function [hd]=distance(A,B)
hd=0;
for i=1:length(A)
if(A(i)==B(i))
hd=hd;
else
hd=hd+1;
end
end
www.eeworm.com/read/210588/15195543
c distance.c
/* EXISTS AN INTERFACE PROGRAM TO MATLAB : DISTMEX.C */
/*=====================================================================
This file contains :
- Renyi : computes the renyi info of a
www.eeworm.com/read/207195/15280064
m distance.m
%计算城市间的距离
function over=distance(city1,city2)
over=sqrt((city1(2)-city2(2))^2+(city1(3)-city2(3))^2);
www.eeworm.com/read/12865/249864
cpp distance.cpp
/**************************************************************************
*
* distance.cpp - Example program for distance between two iterators.
* See Class Reference Section
www.eeworm.com/read/491360/1191705
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
www.eeworm.com/read/482889/1283991
hpp distance.hpp
#ifndef BOOST_MPL_DISTANCE_HPP_INCLUDED
#define BOOST_MPL_DISTANCE_HPP_INCLUDED
// Copyright Aleksey Gurtovoy 2000-2004
//
// Distributed under the Boost Software License, Version 1.0.
// (S