How to compare the content of 2 cells and get the content from cell1 column1?
1 次查看(过去 30 天)
显示 更早的评论
hello guys, i have 2 cells and i want to compare cell1 (of size 172*1) column1 with cell2 (of size 30644*2) column2. If they are equal i would like to get their content from cell2 column1.
Note that the rows of cell1 column1 may occur multiple times in cell2 column2.
inputs:
Expected outputs:
2 个评论
Nikhil Negi
2018-5-28
Hello, are the contents of cell 2 column 2 just repetitions of the contents of cell 1 column 1??
回答(2 个)
Nikhil Negi
2018-5-29
Hello chocho,
you can use temp=ismember(cell1,cell2(:,2)) ans=all(temp); if ans=1 then cell1 is a subset of cell2 column 2(your required condition) and if ans=0 then your condition is not satisfied
0 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Structures 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!