Tagged Questions
1
vote
0answers
39 views
Unmatched intersected line coordinates in 2D array coordinate
In the link here I described about this problem as a primary description. That will help me to explain the description of below mentioned problem. Here, I have 2D array with some values , let's say, ...
-2
votes
0answers
35 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 ...
2
votes
2answers
66 views
Error - Calculating Euclidean distance for PCA in python
I am trying to implement face recognition by Principal Component Analysis (PCA) using python. I am following the steps in this tutorial: ...
0
votes
1answer
156 views
Pycuda Blocks and Grids to work with big datas
I need help to know the size of my blocks and grids.
I'm building a python app to perform metric calculations based on scipy as: Euclidean distance, Manhattan, Pearson, Cosine, joined other.
The ...
1
vote
1answer
315 views
Calculating euclidean distance between consecutive points of an array with numpy
I have an array which describes a polyline (ordered list of connected straight segments) as follows:
points = ((0,0),
(1,2),
(3,4),
(6,5),
(10,3),
...
2
votes
4answers
1k views
Multidimensional Eucledian Distance in Python
I want to calcuate the eucledian distance in multiple dimensions (24 dimensions) between 2 arrays. I'm using Numpy-Scipy.
Here is my code:
import numpy,scipy;
A=numpy.array([116.629, 7192.6, ...
4
votes
2answers
454 views
Euclidean distance with weights
I am currently using SciPy to calculate the euclidean distance
dis = scipy.spatial.distance.euclidean(A,B)
where; A, B are 5-dimension bit vectors. It works fine now, but if I add weights for each ...
4
votes
8answers
872 views
Python: reduce on tuple of tuples
I am trying to compute in Python the length of the path from a point A to a point B going through a list of intermediary points. I know how to do it but I do want to use the reduce Built-in function.
...
7
votes
6answers
2k views
Identifying points with the smallest Euclidean distance
I have a collection of n dimensional points and I want to find which 2 are the closest. The best I could come up for 2 dimensions is:
from numpy import *
myArr = array( [[1, 2],
[3, ...
4
votes
2answers
2k views
python numpy euclidean distance calculation between matrices of row vectors
I am new to Numpy and I would like to ask you how to calculate euclidean distance between points stored in a vector.
Let's assume that we have a numpy.array each row is a vector and a single ...
3
votes
2answers
817 views
Euclidian Distances between points
I have an array of points in numpy:
points = rand(dim, n_points)
And I want to:
Calculate all the l2 norm (euclidian distance) between a certain point and all other points
Calculate all pairwise ...
4
votes
6answers
2k views
Using Numpy to find the average distance in a set of points
I have an array of points in unknown dimensional space, such as:
data=numpy.array(
[[ 115, 241, 314],
[ 153, 413, 144],
[ 535, 2986, 41445]])
and I would like to find the average euclidean distance ...
1
vote
2answers
261 views
Euclidian distance between posts based on tags
I am playing with the euclidian distance example from programming collective intelligence book,
# Returns a distance-based similarity score for person1 and person2
def ...
11
votes
3answers
6k views
Euclidean distance between points in two different Numpy arrays, not within
I have two arrays of x-y coordinates, and I would like to find the minimum Euclidean distance between each point in one array with all the points in the other array. The arrays are not necessarily the ...
5
votes
4answers
3k views
Euclidian Distance Python Implementation
I am playing with the following code from programming collective intelligence, this is a function from the book that calculated eclidian distance between two movie critics.
This function sums the ...
31
votes
5answers
20k views
calculate euclidean distance with numpy
I have two points in 3D:
(xa,ya,za)
(xb,yb,zb)
And I want to calculate the distance:
dist = sqrt((xa-xb)^2 + (ya-yb)^2 + (za-zb)^2)
What's the best way to do this with Numpy, or with Python in ...