What is the most efficient method to compare two matrices for an identical row?
16 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
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 comentarios
Respuestas (2)
Image Analyst
el 18 de Mzo. de 2018
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 comentarios
Image Analyst
el 18 de Mzo. de 2018
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
el 18 de Mzo. de 2018
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 comentarios
Ver también
Categorías
Más información sobre Logical en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!