Iam trying to get a FULL string representation of an 2D float32 512x512 array. I can either use numpys string2array(array)
or repr(array)
. But the problem is that I always get a shortened output like that:
'...[2.0886018e-04 1.7029114e-04 2.8904244e-05 ... 4.1985390e-06
1.4982919e-06 4.7537060e-06]]'
Is there a possibility of full representation?