代码搜索:Distance
找到约 8,736 项符合「Distance」的源代码
代码结果 8,736
www.eeworm.com/read/305816/13760355
cpp distance.cpp
/////////////////////////////////////////////////////////////////////////////////////////////////
//
// Levenshtein Distance
// @author: Gonzales Cenelia
// homepage: www.ai-search.4t.com
//
//
www.eeworm.com/read/149098/5703441
cpp distance.cpp
/**************************************************************************
*
* distance.cpp - Example program for distance between two iterators.
* See Class Reference Section
www.eeworm.com/read/147422/5729720
m distance.m
function dist=distance(p1_x,p1_y,p2_x,p2_y)
dist = sqrt((p1_x-p2_x)*(p1_x-p2_x)+(p1_y-p2_y)*(p1_y-p2_y));
www.eeworm.com/read/147422/5729927
m distance.m
%DISTANCE : perform spectral distortion measure.
%Function: y=distance(a,b,xa,zi,method) returns the distortion measure between
% two frames of speech data.
%
%INPUT: a == LPC coeffici
www.eeworm.com/read/144073/5753337
plg distance.plg
Build Log
--------------------Configuration: distance - Win32 Debug--------------------
Command Lines
Creating temporary file "C:\DOCUME~1\孙怡\L
www.eeworm.com/read/144073/5753338
cpp distance.cpp
#include "iostream.h"
#include "math.h"
int distance(int x_1,int y_1,int x_2,int y_2)//计算两点间的距离
{
return (int)sqrt(pow((x_1-x_2),2)+pow((y_1-y_2),2));
}
float distance(float x_1,float y_1,f
www.eeworm.com/read/144073/5753339
dsp distance.dsp
# Microsoft Developer Studio Project File - Name="distance" - Package Owner=
# Microsoft Developer Studio Generated Build File, Format Version 6.00
# ** DO NOT EDIT **
# TARGTYPE "Win32 (x86)
www.eeworm.com/read/144073/5753340
dsw distance.dsw
Microsoft Developer Studio Workspace File, Format Version 6.00
# WARNING: DO NOT EDIT OR DELETE THIS WORKSPACE FILE!
###############################################################################
www.eeworm.com/read/139332/5801882
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.
// (See acco
www.eeworm.com/read/125503/6028348
java distance.java
package dk.itu.nulx30.util;
/**
* This class extends BinaryHeapElement but is only a wrapperclass
* which has exchanged the priority of the BinaryHeapElement with
*