Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在matlab,我怎样才能实现以下?
matlab
假设我有一些 setA和另一个 set B,它们都有一些元素。我怎样才能编写一个只返回不在B的值的函数(B 中 A 的相对补码?AB\A
A
B
B\A
谢谢。
利用setdiff
setdiff
dif = setdiff( A, B )