scipp.where# scipp.where(condition, x, y)# Return elements chosen from x or y depending on condition. Parameters: condition (Variable | DataArray) – Array with dtype=bool. x (Variable | DataArray) – Array with values from which to choose. y (Variable | DataArray) – Array with values from which to choose. Returns: Variable | DataArray – Array with elements from x where condition is True and elements from y elsewhere.