"NumPy shape"의 두 판 사이의 차이

 
20번째 줄: 20번째 줄:
* [[NumPy dtype]]
* [[NumPy dtype]]
* [[파이썬 len()]]
* [[파이썬 len()]]
* [R dim()]]
* [[R dim()]]
* [[shape 브로드캐스팅]]
* [[shape 브로드캐스팅]]
}}
}}


[[분류: NumPy]]
[[분류: NumPy]]

2020년 5월 4일 (월) 21:37 기준 최신판

1 개요[ | ]

NumPy shape
import numpy as np
a = np.array( [1,2,3,4] )
print( a.shape )
import numpy as np
a = np.array( [ [1,2,3], [4,5,6] ] )
print( a.shape )

2 같이 보기[ | ]

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