Find the 3D components-based row of an array that most closely matchs a given vector
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
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 Kommentare
Antworten (1)
Paul
am 15 Feb. 2024
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 Kommentare
Siehe auch
Kategorien
Mehr zu Logical finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!