2020년 9월 8일 화요일

Print whole matrix in Numpy

import sys

import numpy as np

np.set_printoptions(threshold=sys.maxsize)

// and then print the matrix what you want

print(np.arange(1000).reshape(2,5,100))