How to remove similar element in cell?

1 次查看(过去 30 天)
Dear Sir,
Is that possible to remove the similar element in each cell based on previous cell. for example:
z={[],[],282,[195,249,282],[195,249,282],[195,249,282],[195,249,282],[103,195,249,282],[103,195,249,282] [104,1,50,103,195,249,282]}
My I get the expected results below:? results = {[], [], 282, [195,249], [195,249], [195,249], [195,249], [103],[], [104,1,50],}
Thanks in advance and sorry for bothering you.
  2 个评论
Albert Fan
Albert Fan 2018-8-3
Why there are four [195,249] in your expected result? Aren't you trying to remove all duplicate numbers?
laith Farhan
laith Farhan 2018-8-3
Dear Albert, Yeah that true. I did mistake. therefore the expected results is : results = {[], [], 282, [195,249], [], [], [], [103],[], [104,1,50],}

请先登录,再进行评论。

采纳的回答

Fangjun Jiang
Fangjun Jiang 2018-8-3
编辑:Fangjun Jiang 2018-8-3
setdiff(), going through a loop
results=z;
for k=2:length(z)
results{k}=setdiff(z{k},z{k-1});
end
celldisp(results);

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Logical 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by