numpy.ones

numpy.ones 함수는 주어진 형태와 타입을 갖는 1로 채워진 어레이를 반환합니다.



예제

import numpy as np

a = np.ones(4)
b = np.ones(4, dtype=int)
c = np.ones((3, 3))

print(a)
print(b)
print(c)
[1. 1. 1. 1.]
[1 1 1 1]
[[1. 1. 1.]
 [1. 1. 1.]
 [1. 1. 1.]]


이전글/다음글

이전글 :
다음글 :