Hello,
I have a matrix A of size 350000X1 and i want to find index of A in matrix B of size 900000 X 1. I used "Intersect" as below and it takes ~5 mins to get the result. Is there an efficient way to achieve this any faster?
[x,y,z] = intersect(A,B);
thanks,
Manoj kandukuri