Numpy Arrays often "summarize" the display of large content and control this by setting up a threshold
(limit) which can be set by the method set_printoptions()
.
For the display of a Numpy Array never be displayed briefly you can do something like:
import numpy as np
np.set_printoptions( threshold=np.nan )
Displays arrays of up to 10 elements without summarizing content:
import numpy as np
np.set_printoptions( threshold=10 )
print(np.arange(10))
Exit:
[0 1 2 3 4 5 6 7 8 9]
Displays arrays of up to 9 elements without summarizing content:
import numpy as np
np.set_printoptions( threshold=9 )
print(np.arange(10))
Exit:
[0 1 2 ..., 7 8 9]
Reference:
https://docs.scipy.org/doc/numpy-1.13.0/reference/generated/numpy.set_printoptions.html
The problem is in relation to
...
? Why don’t you make onefor item in ber_MFSK
and of the oneprint(item)
?– Leonardo Pessoa
yes that’s the problem , the suggestion solved the problem, thank you
– Sergio Nunes