Euclidean distance between two vectors of complex numbers
32 次查看(过去 30 天)
显示 更早的评论
I have two vectors of complex numbers and want to compute Euclidean distance between them. whether I should use d = norm(A - B) or d = norm(abs(A) - abs(B))
0 个评论
采纳的回答
Matt J
2014-1-8
编辑:Matt J
2014-1-8
Suppose you have
>> A=1-i; B=1+i;
Which result do you consider correct,
>> d = norm(A - B) ,
d =
2
or
>> d = norm(abs(A) - abs(B))
d =
0
5 个评论
Matt J
2014-1-8
编辑:Matt J
2014-1-8
What about when A=1, B=-1. Do you again want to consider their distance to be zero?
In any case, this is not a general question that anyone but you can know the answer to. This is driven by the needs of your specific application and so only you know what is right for that.
dhruv jain
2017-5-5
Considering you are working on feature vectors which give complex numbers then you should consider euclidean distance
更多回答(0 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Genomics and Next Generation Sequencing 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!