scipp.logical_or# scipp.logical_or(a, b)# Element-wise logical 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 or of the elements of a and b.