random distribution row number

I have matrix A with 1×10 elements and B with 1×125 elements. But elements in B are those elements in A only but randomly distributed. Now I want to get the row number of each element in B corresponding to matrix A.. can anybody help me .. thanks in advance

 采纳的回答

[idxB, idxA] = ismember(B, A);
idxA is index of A members in B.

更多回答(0 个)

类别

帮助中心File Exchange 中查找有关 Programming 的更多信息

Community Treasure Hunt

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

Start Hunting!

Translated by