Finding a specific pair of points in 2 matrices placed at the same index on both

2 ビュー (過去 30 日間)
Ran Kagan
Ran Kagan 2021 年 1 月 17 日
編集済み: Ran Kagan 2021 年 1 月 22 日
Hi all,
Say I have the following matrices:
A= [1 2 3 ; 2 3 6]
B= [6 7 7; 4 8 9]
And the user wants to find where are the values (3,8) (3 on the first matrix and 8 on the second matrix) exist at the same index in both.
Is there an efficient built-in function that will return the output of (2,2), which is the location in both matrixes (A and B) that referes to the user's input?
I need to avoid from accidently finding the 3 on (1,3) in A and the 8 on (2,2) in B - even though they meet the same values of the user's input, they are not indexed on the same places in both matrices.
It is only a toy example, the real matrices A and B are huge so running with loops would be very inefficient, hence my question.
In addition, this code should also work and return the same answer if the user's input will be close enough to (3,8), for instance: (2.9,7.9). How can this be implemented?
Thanks!

回答 (2 件)

Matt Gaidica
Matt Gaidica 2021 年 1 月 17 日
[row,col] = find(A == 3 & B == 8)
Those will be empty if your condition doesn't exist.
  4 件のコメント
Ran Kagan
Ran Kagan 2021 年 1 月 17 日
No. the matrices are untouchable.
Image Analyst
Image Analyst 2021 年 1 月 17 日
You'd not be "touching" or changing them, just rounding them
[rows, columns] = find(A == round(usersAValue) & B == round(usersBValue));

サインインしてコメントする。


Image Analyst
Image Analyst 2021 年 1 月 17 日
Try this:
A = [1 2 3 ; 2 3 6]
B = [6 7 7; 4 8 9]
usersAValue = 2.9
usersBValue = 7.9
% Specify how close they can be and still be considered a "match".
tolerance = 0.15;
abs(A - usersAValue)
% Get a matrix with 1's wherever the values are within the tolerance.
matchingMap = abs(A - usersAValue) < tolerance & abs(B - usersBValue) < tolerance
% Find all locations where there is a 1 (where values are within tolerance).
[rows, columns] = find(matchingMap)
  3 件のコメント
Image Analyst
Image Analyst 2021 年 1 月 22 日
In that line of code, tolerance can either be a scalar that applies to all array elements, or can be an array the same size as the other arrays. In the latter case, you can change tolerance according to position/location if you want.
If you want only a single element or region instead of multiple ones, you can get down to just one element or region. You can either:
  1. subtract the matrices from the user values and find where (what single element) the absolute value of the difference is least, or
  2. if you want a region you can use bwareafilt() to get either the largest or smallest region, or use regionprops to find which region in tolerance has the lowest absolute difference averaged over the region.
Not sure which you want.
Ran Kagan
Ran Kagan 2021 年 1 月 22 日
編集済み: Ran Kagan 2021 年 1 月 22 日
"In the latter case, you can change tolerance according to position/location if you want.".
The problem is: I don't know how to map the tolerances of neighboring indices in these huge matrices, as I couldn't figure out what the calculation should be for that, nor whether or not there is a logic in that.
If the difference was constant all along the way, it was perfect. But since this is ain't the case, I'm stuck.
As I demonstrated in the examples, for the case of r=0.25, the smallest difference is ~1.3*10^-4, while for the second case, the smallest difference is ~4.8*10^-5. Setting the tolerance for the second case (which is tigther), and applying it to all of the possible user's input, would be incorrect, as for the case of r=0.25 (and for numerous other cases as well), I won't get an output at all, as the
r_sp-usersValue < tolerance(=~4.8*10^-5)
will yield zero findings.
The fact that this code needs to meet both criteria (provding the closest user's input value & being on the same row and column on both matrices), while being efficient, makes it really hard for me to consdier my next steps. Otherwise it would have been relatively simple.

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by