티스토리 뷰

numpy.linspace

numpy.linspace(start, stop, num=50, endpoint=True, retstep=False, dtype=None, axis=0)

일정 간격을 갖는 수로 구성된 벡터값을 생성하기 위한 함수로 start와 stop사이에 num개의 점을 생성한다.

 

Usage

np.linspace(2.0, 3.0, num=5)
-> array([2.  , 2.25, 2.5 , 2.75, 3.  ])

np.linspace(2.0, 3.0, num=5, endpoint=False)
-> array([2. ,  2.2,  2.4,  2.6,  2.8])

np.linspace(2.0, 3.0, num=5, retstep=True)
-> (array([2.  ,  2.25,  2.5 ,  2.75,  3.  ]), 0.25)

 

Similar

- arange

- geomspace

- logspace

 

Ref

- numpy.linspace https://numpy.org/doc/stable/reference/generated/numpy.linspace.html

'Computer Science > Python' 카테고리의 다른 글

Python의 유용한 Trick들  (2) 2020.07.07
[Pandas] Web Page에서 Table 정보 가져오기  (0) 2020.07.06
댓글
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
«   2025/04   »
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
글 보관함