감동, 마음이 움직이는 것

[python] array type변경 본문

Tips (Utility, Computer Language, and etc.)

[python] array type변경

Struggler J. 2017. 12. 14. 23:56

https://stackoverflow.com/questions/8855574/convert-ndarray-from-float64-to-integer

integer array만드는 법

>>> a = numpy.zeors(3, dtype=numpy.int64)

만약 a가 integer가 아닌 다른 type이었다면 astype을 통해서 integer형으로 바꿀 수 있다. 

>>> a = a.astype(numpy.int64)