"NumPy N차원배열 ndarray"의 두 판 사이의 차이

 
(같은 사용자의 중간 판 5개는 보이지 않습니다)
3번째 줄: 3번째 줄:
;NumPy N차원 배열
;NumPy N차원 배열


<source lang='python'>
<source lang='python' run>
import numpy as np
x = np.array([[1, 2, 3], [4, 5, 6]], np.int32)
x = np.array([[1, 2, 3], [4, 5, 6]], np.int32)
print( type(x) )
print( type(x) ) # <class 'numpy.ndarray'>
# <type 'numpy.ndarray'>
print( x.shape ) # (2, 3)
print( x.shape )
print( x.dtype ) # int32
# (2, 3)
print( x.dtype )
# dtype('int32')
</source>
</source>


==같이 보기==
==같이 보기==
* [[NumPy array()]]
* [[NumPy 배열 생성 함수]]
* [[NumPy 배열 생성 함수]]



2020년 2월 15일 (토) 11:34 기준 최신판

1 개요[ | ]

NumPy N-dimensional array, ndarray
NumPy N차원 배열
import numpy as np
x = np.array([[1, 2, 3], [4, 5, 6]], np.int32)
print( type(x) ) # <class 'numpy.ndarray'>
print( x.shape ) # (2, 3)
print( x.dtype ) # int32

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}