Comparing two vectors with different dimensions
7 次查看(过去 30 天)
显示 更早的评论
Hello,
How can you compare two vectors with different number of elements? I am just trying to find the equal elements. Thanks!
0 个评论
采纳的回答
the cyclist
2012-6-14
Your question is fairly vague, but I have a feeling that either the ismember() command or the intersect() command will help you do what you want.
更多回答(1 个)
Rohan Kale
2012-6-19
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Logical 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!