프로그래머의 삶 Programmer's Life/Python, Numpy, Pandas

Calculating Integral calculus by Scipy

Oliver's World 2022. 6. 8. 23:41
728x90

Scipy can be available to calculate mathematical equations.

Scipy는 수학적 공식을 계산하기 위하여 사용되어질 수 있습니다.

 

Here is the integral calculus example. 

여기는 간단한 적분 계산 예제입니다.

 

 

Scipy provides "integrate" to calculate integral calculus. 

Scipy라이브러리에 있는 integrate 함수를 통하여 적분을 계산할 수 있습니다.

 

First, here's the user-defined function that we want to calculate in Integral calculus: def func(x)

먼저 적분 미적분에서 계산하려는 사용자 정의 함수입니다: def func(x)

 

Then, calculate the above equation by "quad" included in the scipy library.

그런 다음 scipy 라이브러리에 포함된 "quad"로 위의 방정식을 계산합니다.

 

def func(x):
    return x**2 + 2*x + 5

# parameters of quad : (Python function or method to integrate, Lower limit of integration, Upper limit of integration)
print(integrate.quad(func, -3, 3))

 

728x90