반응형
해결 방법
>>> import numpy as np
>>> a = np.zeros((2, 2))
>>> a
array([[ 0., 0.],
[ 0., 0.]])
# In the following line 1 is the index before which to insert, 0 is the axis.
>>> np.insert(a, 1, np.array((1, 1)), 0)
array([[ 0., 0.],
[ 1., 1.],
[ 0., 0.]])
>>> np.insert(a, 1, np.array((1, 1)), 1)
array([[ 0., 1., 0.],
[ 0., 1., 0.]])
참조 페이지 https://stackoverflow.com/questions/8298797
반응형
'파이썬' 카테고리의 다른 글
파이썬 Python 2.7 Beautiful Soup Img Src Extract (0) | 2020.09.22 |
---|---|
파이썬 OOP : getter / setter 메서드 (0) | 2020.09.22 |
파이썬 Python 인스턴스 변수는 스레드로부터 안전합니까? (0) | 2020.09.22 |
파이썬 Insert list into my database using Python (0) | 2020.09.22 |
파이썬 Python을 사용하여 웹 사이트에 로그인 (0) | 2020.09.22 |
댓글