代码搜索:Distance
找到约 8,736 项符合「Distance」的源代码
代码结果 8,736
www.eeworm.com/read/179954/9329149
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/374659/9390086
h distance.h
///////////////////////////////////////////////////////////////////
/*****************************************************************
Copyright: Artificial Life and Adaptive Robotics Laboratory - A
www.eeworm.com/read/374659/9390092
cpp distance.cpp
///////////////////////////////////////////////////////////////////
/*****************************************************************
Copyright: Artificial Life and Adaptive Robotics Laboratory - A
www.eeworm.com/read/373220/9468686
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/371323/9556299
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/365735/9849784
m distance.m
function result=distance(X,label,alpha)
% This function computes the distance matrix for S-Isomap
%
% X: input data. DxN matrix, D is the dimension, and N is the number of
% records.
% label:
www.eeworm.com/read/361342/10057172
java distance.java
package firstproblem;
import java.awt.Point;
/**
* 求两点间的距离
* @author 何腾飞
*
*/
public class Distance {
public static double dist(Point a, Point b) {
int dx = a.x - b.x;
int dy = a.
www.eeworm.com/read/361233/10063572
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/361001/10069743
m distance.m
function dist=distance(X,x);
% dist=distance(X,x)
%
% computes the pairwise squared distance matrix between any column vectors in X and
% in x
%
% INPUT:
%
% X dxN matrix consisting of N column ve
www.eeworm.com/read/359521/10140570
java distance.java
import javax.swing.JOptionPane;
public class Distance
{
public static void main( String[] args)
{
int v;
int t;
int s;
String title1="输出结果1";
String title2="输出结果2";
v=150;
t