Distance is a numerical description of how far apart objects are.

learn more… | top users | synonyms

-2
votes
0answers
17 views

CUDA Python implementation of hamming distance

I am able to calculate the hamming distance between two strings using python but wanted to know if anyone has tried implementing the same in any CUDA based python implementation e.g. using CUDAMat, ...
-1
votes
0answers
7 views

Best way to calculate distance of a set of lat longs

I have a set of lat longs from a gps device with speed, and various events of a vehicle. What will be best way to find the distance traveled if am getting consecutive lat longs. If the vehicle is ...
0
votes
0answers
52 views

get distance between two points ios [closed]

I need to get the distance between two points until, that distance will be less than 2 mts. So, to start, I have a var called positionToGo CLLocation *positionToGo; I set this var in the ...
0
votes
1answer
37 views

c++ trying to find the distance between 2 nodes

I am currently working on a function that has 1 helper function, the main function takes in 2 strings and searches for the first one (which becomes a reference as if it was m_root) and a second one to ...
-1
votes
0answers
43 views

Calculate distance between cities using PHP and MySQL

I have a calculate distance function that allow the user to select from a drop list. The first location then the second location that are retrieved from the database that each location have a ...
0
votes
1answer
14 views

Efficient getting a pair of coordinates with the shortest distance from array of coordinates using Javascript

I have a several x-y coordinates stored in an two arrays, one for source object, one for target : var sourcePoints = [ { x: 20, y: 11 }, { ... }, { x: 10 y: 6 } ]; var ...
0
votes
2answers
55 views

calculating distance did not give the right answer using php because the answers are not real

can anyone tell me if the formula of calculating distance using longitude and latitude is correct?? like the distance between 2 cities as the formula show is more than 135 km and this is not realll ...
0
votes
0answers
9 views

Distance finding using PTZ camera

How to find the distance between two points in a wall using PTZ camera? Any calibration technique needed to find the distance?
0
votes
0answers
14 views

Continue execution after CLLocationManager obtains the location

In my app I want to get the current user location and THEN continue executing the app. I check the newLocation.timestamp and if it's less than 0.02 sec I treat it as the most current location. Once ...
1
vote
1answer
32 views

calculate distance between 2 points using php and mysql

i have a form that allow user to select from the database the city 's name fro the first point and then the city's name for the second point then submit the calculate button the village table ...
0
votes
1answer
46 views

calculate distance between 2 points using mysql and php [closed]

i have a map page that have a forma for calculating distance but this contain 2 drop list that handle all the cities in the database to allow user to select the first point from the first drop list ...
-1
votes
0answers
36 views

calculate distance between 2 points using php and mysql [closed]

i have a map page that have a forma for calculating distance but this contain 2 drop list that handle all the cities in the database to allow user to select the first point from the first drop list ...
0
votes
1answer
26 views

Solr 4 Spatial Search polygon vs polygon search with distance parameter

Is there a way to search for a polygon in X distance to indexed polygons? I already have indexed polygons and multipolygons in SOLR 4.2.1 index with a field type <fieldType name="location_rpt" ...
-2
votes
2answers
39 views

Mathematical formula for inverse distance in a range [closed]

I often run into this problem but I'm not sure I've nailed down the best way to formulate it. I assume it requires a reciprocal... Basically, if x is 0, y should be maxY, and if x is 200 (or some ...
2
votes
2answers
40 views

How to select/find coordinates within a distance from a list (X/Y) using R

I have a data frame with list of X/Y locations (>2000 rows). What I want is to select or find all the rows/locations based on a max distance. For example, from the data frame select all the locations ...
-1
votes
1answer
36 views

Calculate the distance of the shortest path around outside of 3D box [closed]

I need some help with the math behind an assignment i was given. The problem was to calculate the distance from the ant to the candy. The candy is always on top of the box and the ant can be anywhere ...
2
votes
2answers
67 views

How to calculate Euclidean distance (and save only summaries) for large data frames

I've written a short 'for' loop to find the minimum euclidean distance between each row in a dataframe and all the other rows (and to record which row is closest). In theory this avoids the errors ...
1
vote
2answers
30 views

calculating distance matrix of a given row-wise vector matrix

Suppose I have an matrix nxm accommodating row vectors. I want to have an distance matrix nxn that presents the distance of each vector to each other. How can I do it in Python as I am using Numpy. I ...
0
votes
2answers
44 views

Entries a specific distance away from others

My table has an NAME and DISTANCE column. I'd like to figure out a way to list all the names that are within N units or less from the same name. i.e. Given: NAME DISTANCE a 2 a 4 a 3 a 7 ...
0
votes
4answers
38 views

Distance calculation based on multiple locations (Lat,Lon) including starting/ finishing point

I would like to calculate the total distance of driving beetween multiple locations (loop), including the distance (starting point (garage) - first location sarting point) and (last location finishig ...
1
vote
1answer
66 views

Distance of point feature to nearest polygon in R

I working on a project at the moment, where I have a point feature -- the point feature includes a 142 points -- and multiple polygon (around 10). I want to calculate the distance between every single ...
0
votes
0answers
12 views

how to get route between 2 markers by adding the markers on click event of google map in javascript

pls help me.I have placed 2 markers on click event of google map but i am not getting how to find the route.i want that on clicking for placing the second marker the route should be automatically ...
1
vote
1answer
55 views

K-means clustering with my own distance function

I have defined a distance function as follow jaccard.rules.dist <- function(x,y) ({ # implements feature distance. Feature "Airline" gets a different treatment, the rest # are booleans ...
1
vote
2answers
30 views

Handling NAs when calculating matching distances with a the 'proxy' package

I have a function that calculates simple matching distances in a matrix with ordinal data: require(proxy) m <- test f <- function(x,y) sum(x == y) / NROW(x) matches <- as.matrix(dist(m, f, ...
3
votes
1answer
125 views

OpenCV: measuring distance between two balls in millimeters - how to improve accuracy

I also posted this topic in the Q&A forum at opencv.org but I don't know how many experts from here are reading this forum - so forgive me that I'm also trying it here. I'm currently learning ...
0
votes
1answer
106 views

Distance for each intersected points of a line in increased order in 2D coordinate

I am calculating the distance between A(x0,y0) and B(x1,y1) points in a 2D (x,y). I have the following code which represents intersected points of each cell in the given two boundary points, A(x0,y0) ...
0
votes
1answer
63 views

Distance between two points on circle in specific direction

I have two points on my circle, (x1y1) and (x2y2). How do I calculate distance between them in counter and clock wise direction. Currently, I am using following formula to calculate the distance ...
0
votes
1answer
30 views

Distance between istream_iterators

I am trying to count the amount of elements read by std::cin by using std::distance for the constructor argument of a vector in advance, like so: // Gives correct amount, but now can't use to put ...
0
votes
4answers
90 views

Distance between two points without using the square root

Is it possible to calculate the distance between two points without having to use the math.h library? I know that, using the math.h library, it would have to be something among these lines (Euclidean ...
0
votes
0answers
35 views

Mahalanobis distance covariance

I want to divide a set of vectors into clusters using mahalanobis distance. But I'm not sure from which vectors to take the covariance, since it is very likely they are from multiple clusters. Should ...
1
vote
1answer
41 views

Creating matrix for scipy.cluster.hierarchy.fclusterdata

I am trying to run a cluster analysis on a list of coordinates. I'd like to use scipy.cluster.hierarchy.fclusterdata. How do I create an appropriate n by m data matrix from my coordinates? My list ...
0
votes
1answer
61 views

How to create a user defined function in sqlite or get distance between 2 geopints?

I want to calculate distance between two geopoints one point which is stored in my local db and other point is my current location.How can I get it. I want to fire SELECT *, 3956 * 2 * ASIN ( SQRT ...
-1
votes
2answers
28 views

Find 2 point with same distance from A [closed]

I have a math problem. I have location (x,y) of point A, B, and a number (x). I want to calculate the location of point C, D. CD is perpendicular with AB and AC = AD = x. This is the picture describe ...
0
votes
0answers
17 views

Distance vector routing protocol

http://i.imgur.com/BNHV77s.png In the attached screenshot is a distance vector routing protocol question. after exchanging initial routing tables (1st iteration) can A -> D by first going to B(3) ...
-2
votes
0answers
30 views

google maps api city distance [closed]

I have a code. and I need to calculate distaces in town and other distance in out of towner. Can anyone help me to solve it? Thans. // var map = null; var directionDisplay; ...
0
votes
0answers
6 views

Reciprocal spatial distance

I have applied sift on one image to find out which part of the image is the same as another part in case of copy-paste. Then If assign each SIFT key point to a cluster, how I can compute all the ...
-2
votes
0answers
33 views

Compute a Matrix of Eucleudian distance for 20 amino acids using physicochemical properties score in python [closed]

I have 20 amino-acids (AAs) and 7 physochemichal properties (RADA880102; FAUJ880103; ZIMJ680104; GRAR740102;CRAJ730103; BURA740101; CHAM820102) and I am trying to write a script in Python to compute ...
0
votes
1answer
47 views

Calculate Eucleudian distance between 20pairs of Amio acids using thieir Physicochemical properties scores in Python and the output is a Matrix

Can someone help me? I have 20 amino-acids (AAs) and 7 physochemichal properties (RADA880102; FAUJ880103; ZIMJ680104; GRAR740102;CRAJ730103; BURA740101; CHAM820102) The input is a tab delimited ...
-1
votes
0answers
41 views

Line of best fit for a given set of points and the distance from these points to the line

Is it possible to have the line (linear function Y = a X + b) of best fit which is a line that passes as close as possible to a set of points defined by coordinates point_i = (X_i, Y_i) ? I'm ...
0
votes
1answer
54 views

PHP Calculate distance between an user and other users (one by one)

I've tried with this code but something is wrong in the result: i got only 1 km result the others are 0 and it gets in solutions or all users or nobody. Maybe i'm wrong with mysql_fetch_array. This is ...
0
votes
2answers
32 views

Working out the distance between 2 points in one plane only

How can I find the distance between the two points as shown in the above picture. I know I can use Pythagoras to find the 'actual' distance between the two points, but I want to find the X distance ...
0
votes
0answers
20 views

Hamming distance value for j1850 crc

I have to implement j1850 8 bit crc on a message length on 56 excluding crc part. Can anybody tell me the hamming distance for this if my polynomial is x^8 + x^4+x^3+x^2+1.
-1
votes
0answers
36 views

Using maps (google) to find closest distances

I, can not figure out how on earth I can do something like this. I have never coded in php and mysql using like some sort of distance finding technique. I'm guessing I can use google maps. Can someone ...
0
votes
0answers
28 views

Issues with prolog

So im writing a program that calculates the distances of two vectors with any number of elements in them and does calculation on the total sum of all the calculations. Ive been trapped on it for ...
1
vote
1answer
78 views

minimum distance from an array [closed]

I followed this method from my other post [distance between a point and a curve[(find the distance between a point and a curve python) but something is wrong. The values aren't accurate. I plotted ...
1
vote
1answer
29 views

Mouse movement distance in cm

I am coding a little program which logs my mouse activity. But now i want to go a step further. Is there anyway to get the distance your mouse has traveled (on the desk) (and not the pointer on the ...
0
votes
0answers
9 views

Detecting location between mobile devices

Other then geoip, is there a method to detect the distance within a closed environment of 2 devices. This will be used indoors not outdoors in spaces ranging from 8000sf to 60000sf thanks
0
votes
0answers
47 views

raycasting with kinect how far is image from camera?

I generated a mesh with kinect fusion, I would like to texture my mesh using raycasting. But in order for this to work I need three things: Mesh position (Done) camera/eye position (Done) ...
-2
votes
2answers
76 views

How to make a symmetric matrix in Python? [closed]

I have a huge data set that computes distances (these were own specified metrics, not Euclidean or something famous). I've put all those distances in a list after a for-loop to get a length, so there ...
0
votes
0answers
26 views

Object distance from PTZ camera

I am working on VC++ Project to find QR code(on a shelf) distance from a PTZ camera could anyone can guide me to find a way to achieve this. its better if the way does not need camera calibration ...

1 2 3 4 5 19