commit 5a93ce69136ae0ed7f45dc0a97e2a48105688b02 parent d5264f65b7297adaa13c3750ddea7a02b0eb4b4e Author: Egor Achkasov <eaachkasov@edu.hse.ru> Date: Sat, 16 Nov 2024 21:26:44 +0100 Remove result interleaving in main Diffstat:
| M | main.c | | | 8 | -------- |
1 file changed, 0 insertions(+), 8 deletions(-)
diff --git a/main.c b/main.c @@ -44,12 +44,4 @@ int main() { /* Print MSE */ printf("%f\n", mse(x, x_MMSE)); - - /* Interleave the result */ - data_t res[NUM_TX_ANT][NUM_SC][2]; - for (i = 0; i < NUM_TX_ANT; ++i) - for (j = 0; j < NUM_SC; ++j){ - res[i][j][0] = x_MMSE[i][j].re; - res[i][j][1] = x_MMSE[i][j].im; - } }