代码搜索:Distance
找到约 8,736 项符合「Distance」的源代码
代码结果 8,736
www.eeworm.com/read/420999/10761676
distance
www.eeworm.com/read/399615/7844504
distance
-1,-1 4,0.1 10,0.8 5,0.9 8,0.5 6,0.4 10,0.8
4,0.1 -1,-1 11,0.2 8,0.3 4,0.6 9,0.7 10,0.9
10,0.8 11,0.2 -1,-1 10,0.7 3,0.8 6,0.6 7,0.3
5,0.9 8,0.3 10,0.7 -1,-1 2,0.9 5,0.6 9,0.4
8,0.5 4,0.6 3,0.
www.eeworm.com/read/189239/8482891
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/388272/8620340
h distance.h
// distance.h
#ifndef VECTOR_H
#define VECTOR_H
// includes
#include "util.h"
// macros
#define DISTANCE(square_1,square_2) (distance[119+((square_2)-(square_1))])
// variables
www.eeworm.com/read/388272/8620381
cpp distance.cpp
// vector.cpp
// includes
#include "piece.h"
#include "square.h"
#include "util.h"
#include "distance.h"
// variables
int distance[239];
// functions
void vector_init()
{
www.eeworm.com/read/386978/8714946
m distance.m
function l=distance(demand,a,b)
l=sqrt((demand(a,1)-demand(b,1))^2+(demand(a,2)-demand(b,2))^2);
www.eeworm.com/read/286851/8739620
class distance.class
www.eeworm.com/read/430398/8750324
java distance.java
/**
*
*/
package k_means;
/**
* calculate the distance btween two points
*
* @author xiaoge
*
*/
public class Distance
{
public static Double calDistance(Double[] a,Double[] b)
www.eeworm.com/read/430398/8750353