I am trying to convert a MATLAB code in Python. I don\'t know how to initialize empty matrix in Python.
MATLAB Code:
demod4(1) = [];
To init matrix with M rows and N columns you can use following pattern:
M = 3 N = 2 matrix = [[0] * N for _ in range(M)]