반응형
어느 것이 더 빠른지 확인하기 위해 numpy와 scipy에서 별도로 계승 함수를 가져올 수 있습니까?
나는 이미 수입 수학으로 파이썬 자체에서 계승을 가져 왔습니다. 그러나 numpy 및 scipy에서는 작동하지 않습니다.
해결 방법
다음과 같이 가져올 수 있습니다.
In [7]: import scipy, numpy, math
In [8]: scipy.math.factorial, numpy.math.factorial, math.factorial
Out[8]:
(<function math.factorial>,
<function math.factorial>,
<function math.factorial>)
scipy.math.factorial
및 numpy.math.factorial
은 단순히 math.factorial
에 대한 별칭 / 참조 인 것 같습니다. 즉, scipy.math.factorial은 math.factorial
이고 numpy.math.factorial은 math.factorial
은 둘 다 True
를 제공해야합니다.
참조 페이지 https://stackoverflow.com/questions/21753841
반응형
'파이썬' 카테고리의 다른 글
파이썬 Pandas 데이터 프레임 총 행 (0) | 2020.12.23 |
---|---|
파이썬 SQLAlchemy / Elixir에서 고유 한 열 값 선택 (0) | 2020.12.23 |
파이썬 numpy 배열에 요소 삽입 (0) | 2020.12.23 |
파이썬 matplotlib 플롯에서 축 텍스트 숨기기 (0) | 2020.12.23 |
파이썬 Python : Pandas를 사용하여 열 단위로 숫자 크기 조정 (0) | 2020.12.23 |
댓글