-
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi Neil, The AWGN channel layer does not require knowledge of the ResourceGrid as it will simply add complex Gaussian noise to the elements of the input tensor (which can have arbitrary shape). If you want to simulate a flat fading channel, you can use the RayleighBlockFading channel model together with the OFDMChannel layer. Note that the Mapper maps a sequence of bits to constellation symbols, while the ResourceGridMapper maps a sequence of constellation symbols onto a time-frequency resource grid. If you simulate an AWGN or flat fading channel, there is really no need to define a complex resource grid for TDD as it simply means that you have two orthogonal dimensions for transmissions. You could simply simulate them independently without the need for any resource grid. Hope that helps. |
Beta Was this translation helpful? Give feedback.
Hi Neil,
The AWGN channel layer does not require knowledge of the ResourceGrid as it will simply add complex Gaussian noise to the elements of the input tensor (which can have arbitrary shape).
If you want to simulate a flat fading channel, you can use the RayleighBlockFading channel model together with the OFDMChannel layer.
Note that the Mapper maps a sequence of bits to constellation symbols, while the ResourceGridMapper maps a sequence of constellation symbols onto a time-frequency resource grid.
If you simulate an AWGN or flat fading channel, there is really no need to define a complex resource grid for TDD as it simply means that you have two orthogonal dimensions for transmissions.…