필터 지우기
필터 지우기

calculate distance using the below equation

조회 수: 3 (최근 30일)
Elysi Cochin
Elysi Cochin 2013년 4월 11일
i have 2 variables, dataMatrix and queryMatrix..... dataMatrix contains 245 rows and 38 column values...... and queryMatrix contains 1 row and 38 column values...... i calculate the euclidean distance and sort the distances in ascending order as below.....
for w=1:245
dist = sum((repmat(queryMatrix(w,:),245,1)-dataMatrix).^2,2);
[sortval sortpos] = sort(dist,'ascend');
neighborIds(w,:) = sortpos(1:k);
neighborDistances(w,:) = sqrt(sortval(1:k));
end
instead of euclidean distance i want to use the distance formula in the below link.....
but i dont know to write the equation in matlab...... please can someone convert that equation to matlab..... it would be great help to me..... please do reply......
  댓글 수: 1
Matt J
Matt J 2013년 4월 11일
편집: Matt J 2013년 4월 11일
If queryMatrix only has 1 row, how can w run from 1 to 245 in queryMatrix(w,:)?

댓글을 달려면 로그인하십시오.

채택된 답변

Matt J
Matt J 2013년 4월 11일
Assuming queryMatrix and dataMatrix are both 245x38, the whole thing can be done without loops,
d=permute(dataMatrix,[1,3,2]);
q=permute(queryMatrix,[3,1,2]);
num = abs(bsxfun(@minus,d,q));
den = bsxfun(@plus,abs(d),abs(q));
dist=sum(num./den,3);
[sortval sortpos] = sort(dist);
neighborIds = sortpos(1:k,:);
neighborDistances = sqrt(sortval(1:k,:));
  댓글 수: 2
Elysi Cochin
Elysi Cochin 2013년 4월 11일
sir what is 1,3,2 and 3,2,1 in
d=permute(dataMatrix,[1,3,2]);
q=permute(queryMatrix,[3,1,2]);
shud i use it in my datavalues???..... as my datavalues are not of the same row and column values.... what changes should i make when i use for loop?? please do reply sir....
Matt J
Matt J 2013년 4월 11일
편집: Matt J 2013년 4월 11일
To understand the syntax of the PERMUTE command, see
doc permute
help permute
As I mentioned, you don't need to be using a for-loop. The only requirement here is that dataMatrix and queryMatrix have the same number of columns.

댓글을 달려면 로그인하십시오.

추가 답변 (1개)

Andrei Bobrov
Andrei Bobrov 2013년 4월 11일
편집: Andrei Bobrov 2013년 4월 11일
dataMatrix = randi([-10,10],10,5);
queryMatrix = randi([-10 10],1,5);
d = bsxfun(@(x,y)abs(x - y)./(abs(x) + abs(y)),...
dataMatrix,permute(queryMatrix,[3 2 1]));
d = sort(squeeze(sum(d,2)));
  댓글 수: 2
Elysi Cochin
Elysi Cochin 2013년 4월 11일
sir in my code should i use for loop??? because when i do without for loop i'm getting all values NaN......
dataMatrix = dataMatrix.*sign(rand(size(dataMatrix)));
queryMatrix = queryMatrix.*sign(rand(size(queryMatrix))-.5);
shud i use this rand function for my set of values??
Elysi Cochin
Elysi Cochin 2013년 4월 12일
thank u all...

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Expression Analysis에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by