Find the 3D components-based row of an array that most closely matchs a given vector
1 次查看(过去 30 天)
显示 更早的评论
Hello everyone
I'm currently trying to find the most efficient way to find which three components-based row of an array is the closest one to a given 3D vector. For example, let's imagine that I have an array, aa, and a vector, bb, like the following ones:
aa=[1.1 1.4 1.7; 1.3 1.1 1.2; 1.8 1.0 1.7];
bb=[1.3 1.3 1.3];
If my vector bb were exactly equal to one of the rows of the aa array I would do something like:
find(ismember(aa,bb,'rows'));
but in my case, I probably have to base it on the vector module hosted in each row of the aa array.
Does anyone have any suggestions on how to efficiently perform this task considering that my bb vector changes in a for loop?
0 个评论
回答(1 个)
Paul
2024-2-15
I think the specific solution would depend on the figure of merit for defining "closeness" of two vectors.
For example, if the figure of merit is the 2-norm of the difference, then we can do
aa=[1.1 1.4 1.7; 1.3 1.1 1.2; 1.8 1.0 1.7]
bb=[1.3 1.3 1.3];
v = vecnorm(aa - bb,2,2) % for clarity
[~,ii] = min(v);
aa(ii,:)
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!