setdiff with reptitions ?

7 次查看(过去 30 天)
i have two array A ,B i need to know all elements that inside A but not B including reptitons ,thx .

采纳的回答

Star Strider
Star Strider 2018-11-27
编辑:Star Strider 2018-11-27
Experiment with the ismember (link) funciton or if you are using floating-point numbers, ismembertol (link):
A = randi(9, 1, 10)
B = randi(5, 1, 8)
L = ismember(A, B)
Out = A(L)
or:
Out = A(~L)
depending on the result you want.

更多回答(0 个)

类别

Help CenterFile Exchange 中查找有关 Resizing and Reshaping Matrices 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by