Skip to content

Commit

Permalink
Merge branch '219-ideal-chan-mimo' into 'master'
Browse files Browse the repository at this point in the history
FIx Ideal channel MIMO

Closes #219

See merge request barkhauseninstitut/wicon/hermespy!198
  • Loading branch information
adlerjan committed Jun 12, 2024
2 parents ba4c2ca + f63b22f commit 646bfea
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hermespy/channel/ideal.py
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ def _propagate(self, signal: SignalBlock, interpolation: InterpolationMode) -> S

# MIMO case
else:
propagated_samples = signal
propagated_samples = signal[:self.num_receive_antennas]
if self.num_transmit_antennas < self.num_receive_antennas:
propagated_samples = np.append(
propagated_samples,
Expand Down

0 comments on commit 646bfea

Please sign in to comment.