What is the most efficient method to compare two matrices for an identical row?
16 次查看(过去 30 天)
显示 更早的评论
I am currently comparing two matrices in order to find if there is an identical row between the two.
I am using ismember(A,B,'rows') and I am having issues as it is taking a large amount of time to compare the two due to their sizes. Is there another more efficient method that I can use?
0 个评论
回答(2 个)
Image Analyst
2018-3-18
You could use isequal() testing one row at a time to see if it was in the other matrix, though I don't know this would be faster than ismember(). How big are your matrices and how long is it taking?
2 个评论
Image Analyst
2018-3-18
You didn't answer my question above.
Are the values integers, or floating point/fractional values? If they're floating point, I think you'll have to use ismembertol().
Greg
2018-3-18
Have you tried the following?
all(A==B,2);
I think you meant you are looking for a single row (variable A of size 1x2) in any of the rows of the larger matrix (variable B of size Nx2) - as opposed to matching rows in variables of the same size. The above will require the implicit expansion feature of R2016b (or manual expansion, as many will say is faster than the implicit expansion anyway).
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!