파이썬 3D Numpy 배열을 2D로
이 같은 3D 매트릭스가 있습니다 arange(16).reshape((4,2,2)) array([[[ 0, 1], [ 2, 3]], [[ 4, 5], [ 6, 7]], [[ 8, 9], [10, 11]], [[12, 13], [14, 15]]]) 그리드 형식으로 쌓고 싶습니다. array([[ 0, 1, 4, 5], [ 2, 3, 6, 7], [ 8, 9, 12, 13], [10, 11, 14, 15]]) 명시 적으로 hstacking (및 / 또는 vstacking)하거나 추가 차원을 추가하고 모양을 변경하지 않고 수행 할 수있는 방법이 있습니까? 감사, 해결 방법 In [27]: x = np.arange(16).reshape((4,2,2)) In [28]: x.reshape(2,2,2,2).swapa..
2021. 1. 31.
파이썬 NumPy loadtxt () 및 genfromtxt에서 'dtype'에 사용할 수있는 데이터 유형은 무엇입니까?
해결 방법 np.sctypeDict 외에도 다음과 같은 변수가 있습니다. In [141]: np.typecodes Out[141]: {'All': '?bhilqpBHILQPefdgFDGSUVOMm', 'AllFloat': 'efdgFDG', 'AllInteger': 'bBhHiIlLqQpP', 'Character': 'c', 'Complex': 'FDG', 'Datetime': 'Mm', 'Float': 'efdg', 'Integer': 'bhilqp', 'UnsignedInteger': 'BHILQP'} In [143]: np.sctypes Out[143]: {'complex': [numpy.complex64, numpy.complex128, numpy.complex192], 'float': [nump..
2021. 1. 31.