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