pdist2 function

조회 수: 44 (최근 30일)
A
A 2012년 2월 7일
댓글: Ana Gonçalves 2022년 2월 16일
I'm trying to use the pdist2 function and keep getting this error: "??? Undefined function or method 'pdist2' for input arguments of type 'double'" The 'double' part changes depending on what data type I use, so that part can be ignored.
The statistics toolbox is in my path and I can do "help pdist2" and have the help file come up.
I have tried the examples within the help file and this still doesn't work.
The only thing I can think of is there is a function within pdist2 called partialSort, but no matter how much searching I do, I see no matlab function for this???
Anyone know why my pdist2 doesn't work?
  댓글 수: 4
Sean de Wolski
Sean de Wolski 2012년 2월 8일
I would guess it's not installed correctly. Is it on your path?
>>path
Ana Gonçalves
Ana Gonçalves 2022년 2월 16일
As alternative, you can use this function I developed to replace pdist2.
You can thank me later ;)
function Distance = euclidean(x,y)
% This function replaces the function pdist2 available only at the Machine
% Learning toolbox. It computes the distances between rows of X.
% Autor: Ana C. Goncalves
% n = norm(v) returns the Euclidean norm of vector v. This norm is also
% called the 2-norm, vector magnitude, or Euclidean length.
for i = 1:length(x)
for j = 1:length(y)
if i ~= j
%Distance(i,j) = sqrt((x(i)-x(j))^2 + (y(i)-y(j))^2); % Don't literally work because calculates the distance btw thw columns.
Distance(i,j) = norm(x(i,:) - x(j,:));
end
end
end
end

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

답변 (3개)

Benjamin Schwabe
Benjamin Schwabe 2012년 2월 7일
Okay, my MATLAB does not know a pdist2 function, only pdist. (I am using MatLabd r2009b)
Could it be that simple?
Otherwise, in which folder is the pdist2.m file? Add this to the path or change working directory accordingly.
  댓글 수: 1
A
A 2012년 2월 8일
i'm using r2010b and pdist2 was added to this version

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


Chathurika
Chathurika 2013년 2월 20일
if you don't have a working pdist2, use the following code..it could be little slower than pdist2..but works fine..
pairwise distance between rows of matrix A and B....A and B should have same no of columns....output D is a 2D matrix with ij entry giving distance between ith row of A and jth row of B....distance used is L1 norm..
tmpB(1,:,:)=B';
x=repmat(tmpB,[size(A,1),1,1]);
y=repmat(A,[1,1,size(x,3)]);
D(:,:)=sum(abs(x-y),2);

ROCKTIM JYOTI DAS
ROCKTIM JYOTI DAS 2019년 10월 28일
how to compare two histogram of images
  댓글 수: 1
Steven Lord
Steven Lord 2019년 10월 28일
This isn't related to the original question. Please ask it as its own question. When you ask it as its own question, you should provide more details about how you want to compare the histograms (just answer "Are they the same?", answer "How many bins are different?", answer "How much does each bin differ between the two images?", etc.)

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

태그

Community Treasure Hunt

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

Start Hunting!

Translated by