scipp.logical_xor# scipp.logical_xor(a, b)# Element-wise logical exclusive-or. Equivalent to: a ^ b Parameters: a (TypeVar(VariableLikeType, Variable, DataArray, Dataset, DataGroup[Any])) – First input. b (TypeVar(VariableLikeType, Variable, DataArray, Dataset, DataGroup[Any])) – Second input. Returns: TypeVar(VariableLikeType, Variable, DataArray, Dataset, DataGroup[Any]) – The logical exclusive-or of the elements of a and b.