|
@property |
|
def distance_3d(self): |
|
r""" |
|
Distance between each UT and each BS [m]. |
|
[batch size, number of BSs, number of UTs]""" |
|
return self._distance_2d |
I may well be missing something obvious - but what is the reason for this returning self._distance_2d - should it not be returning self._distance_3d ?
sionna/src/sionna/phy/channel/tr38901/system_level_scenario.py
Lines 237 to 242 in 20d2bca
I may well be missing something obvious - but what is the reason for this returning self._distance_2d - should it not be returning self._distance_3d ?