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) = [];
If you want to initialize the matrix with 0s then use the below code
# for m*n matrix matrix = [[0] * m for i in range(n)]