Why does setdiff answer depend on order of arguments?

1 Ansicht (letzte 30 Tage)
Brian Wilson
Brian Wilson am 9 Sep. 2019
Bearbeitet: Stephen23 am 10 Sep. 2019
>>bob = {'a','b','c'};
>>bill = {'a','b','c', 'd','e'}
As expected,
>>A = setdiff(bill,bob)
A =
'd' 'e'
BUT
>> B = setdiff(bob,bill)
B =
Empty cell array: 1-by-0
WHY??

Akzeptierte Antwort

Steven Lord
Steven Lord am 9 Sep. 2019
Were you expecting the output to contain elements that are only in one of the inputs but not both? That's not what setdiff does. If that is what you want to do, use setxor instead.
  2 Kommentare
Brian Wilson
Brian Wilson am 10 Sep. 2019
Thanks, yes. i was expecting it to tell me the "difference between the sets" i.e., which elements are not in both , but i see now, its computing A \ B.
Stephen23
Stephen23 am 10 Sep. 2019
Bearbeitet: Stephen23 am 10 Sep. 2019
It is worth nothing that MATLAB setdiff follows the standard mathematical definition of "set difference", which is defined as A\B (i.e the elements of A that are not in B):
etc.
The setdiff documentation states "setdiff(A,B) returns the data in A that is not in B"
Although this is the accepted mathematical definition, the term "set difference" is rather ambiguous in common english. It would be nice if it used terms whose meaning was obvious.

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (2)

madhan ravi
madhan ravi am 9 Sep. 2019
Bearbeitet: madhan ravi am 9 Sep. 2019
bob not in bill (nothing unique all elements of bob belong to bill)
help setdiff

Walter Roberson
Walter Roberson am 9 Sep. 2019
setdiff implements set subtraction A \ B which is not commutative

Kategorien

Mehr zu Loops and Conditional Statements finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by