``` In [3]: a = [1,2] * u.m In [4]: b = [3,4] * u.m In [5]: np.where([False, True], a, b) Out[5]: array([ 3., 2.]) ```