在使用pycharm时,有时在调试过程中,需要查看部分数组或矩阵的数值,但由于矩阵太大,pycharm会自动使用省略号代替,遇到这种情况:
在程序中添加:
import numpy as np
np.set_printoptions(threshold=np.inf) # 设置打印选项:输出数组元素数目上限为无穷
或者 np.set_printoptions(threshold='nan') # 设置打印选项:输出数组元素数目上限为nan
其中threshold表示: Total number of array elements to be print(输出数组的元素数目)
即可