본문 바로가기
파이썬

파이썬 numpy 및 scipy의 계승

by º기록 2020. 12. 23.
반응형

어느 것이 더 빠른지 확인하기 위해 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

 

 

반응형

댓글