반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- pycharm
- 결합전문기관
- broscoding
- web 용어
- vscode
- mglearn
- 데이터전문기관
- classification
- html
- 자료구조
- postorder
- CES 2O21 참가
- discrete_scatter
- java역사
- tensorflow
- web 개발
- KNeighborsClassifier
- C언어
- web 사진
- 대이터
- 재귀함수
- inorder
- web
- Keras
- cudnn
- bccard
- CES 2O21 참여
- 웹 용어
- paragraph
- 머신러닝
Archives
- Today
- Total
bro's coding
numpy.스칼라 연산 본문
반응형
import numpy as np
a = np.array([1,2,3,4,5])
a+1
[2,3,4,5,6]
a*4
[4,8,12,16,20]
반응형
'[IT] > python.numpy' 카테고리의 다른 글
numpy.corrcoef (0) | 2020.04.27 |
---|---|
numpy.where.3단 논법 (0) | 2020.04.23 |
numpy.브로드캐스팅 (0) | 2020.03.30 |
numpy.무한대 처리 (0) | 2020.03.30 |
numpy.file open (0) | 2020.03.27 |
numpy.reshape(차원 변경) (0) | 2020.03.26 |
numpy.dtype이용 type변경 (0) | 2020.03.26 |
numpy.shape and ndim (0) | 2020.03.26 |
Comments