Comparing two vectors with different dimensions
古いコメントを表示
Hello,
How can you compare two vectors with different number of elements? I am just trying to find the equal elements. Thanks!
採用された回答
その他の回答 (1 件)
Rohan Kale
2012 年 6 月 19 日
1 投票
Let a and b be two arrays(or vectors). L=length(a), M=length(b).Suppose L>M, pad_zero=L-M; now b=[b zeros(1,pad_zero)]; c=a-b; now you can find the indices of the zero elements excluding the last pad_zero elements. These are your desired indices. Hope it helps.
2 件のコメント
the cyclist
2012 年 6 月 19 日
Uh ... isn't it a lot easier to just use [c ia ib] = intersect(a,b)?
Rohan Kale
2012 年 6 月 19 日
yes it is indeed, I was just trying out an alternative....
カテゴリ
ヘルプ センター および File Exchange で Logical についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!