0
votes
2answers
66 views

MATLAB Computing distance from a point to a set of points

Consider a matrix A: A = magic(5) 17 24 1 8 15 23 5 7 14 16 4 6 13 20 22 10 12 19 21 3 11 18 25 2 9 I have to compute the ...
0
votes
1answer
316 views

How to show 5 images having smallest Euclidean distance with respect to query image

Suppose I have one query image, and a database in matlab that has 10 images. I can read out and show one image which has smallest Euclidean distance with respect to query image. But now, I want to ...
1
vote
1answer
187 views

Efficient way to compute multiple euclidean distances Matlab

I am training my own self organizing map to cluster colorvalues. Now I want to make some sort of a U-matrix to show euclidean distances between the nodes and their direct neighbors. My problem now is, ...
1
vote
2answers
179 views

MATLAB - efficient way of computing distances between points in a graph/network using the adjacency matrix and coordinates

I have the network representation in a 2D coordinate space. I have an adjacency matrix Adj(which is sparse) and a coordinate matrix with the x,y values of all the points/nodes/vertices in the graph ...
1
vote
2answers
370 views

Euclidean Distance

I have two points x1 = (a1,b1,c1,d1,e1); //5 dimensional point x2 = (a2,b2,c2,d2,e2); //5 dimensional point So is this right way to calculate the euclidean dist? d = ...
2
votes
2answers
481 views

Euclidean distance between two set of 3D points

How can I find the nearest points of two set of 3D points(with different number,set1 includes 400 points and set2 includes 2000 points) and then find the Euclidean distance between set1 and result ...
1
vote
3answers
300 views

Calculate distance, given a set of coordinates

my question is quite trivial, but I'm looking for the vectorized form of it. My code is: HubHt = 110; % Hub Height GridWidth = 150; % Grid length along Y axis GridHeight = 150; % Grid length ...
1
vote
2answers
96 views

How to vectorize the code in MATLAB

I have some Cluster Centers and some Data Points. I want to calculate the distances as below (norm is for Euclidean distance): costsTmp = zeros(NObjects,NClusters); lambda = ...
0
votes
1answer
1k views

Given a set of data points, find the one that is “closest”

So we have a reference set of 3D points (let's call it R), and many other sets of 3D points (let's call that set of sets of data points P, and each data set in that Pi). The task is to return the Pi ...
0
votes
3answers
640 views

Alternative to using squareform (Matlab)

At the moment i am using the pdist function in Matlab, to calculate the euclidian distances between various points in a three dimensional cartesian system. I'm doing this because i want to know which ...
0
votes
1answer
235 views

How to make pdist ignore a value (Matlab)

I am using pdist to calculate euclidian distances between three dimensional points (in Matlab). However i have some coordinates that i cannot remove from the matrix, but that i want pdist to ignore. ...
4
votes
3answers
542 views

pdist2 equivalent in MATLAB version 7

I need to calculate the euclidean distance between 2 matrices in matlab. Currently I am using bsxfun and calculating the distance as below( i am attaching a snippet of the code ): for i=1:4754 ...
0
votes
1answer
2k views

SIFT feature matching through Euclidean-distance matlab help pls

SIFT feature matching is done through a Euclidean-distance based nearest neighbor approach. Can some please explain this? Is there a calculation? If then can someone help me to calculate ...
5
votes
3answers
6k views

How to calculate Euclidean length of a matrix without loops?

It seems like the answer to this should be simple, but I am stumped. I have a matrix of Nx3 matrix where there 1st 2nd and 3rd columns are the X Y and Z coordinates of the nth item. I want to ...