필터 지우기
필터 지우기

how can i solve this integral ?

조회 수: 1 (최근 30일)
m
m 2014년 7월 10일
답변: Grzegorz Knor 2014년 7월 10일
hi , how can i solve this integral ?
1/(1-exp(a^2*x)*erfc(a*x^1/2)) ... a is const , a=0.09 and x=0..1000

답변 (1개)

Grzegorz Knor
Grzegorz Knor 2014년 7월 10일
You can solve it online using Wolfram Alpha-> solution
Or in MATLAB:
a = 0.09;
fun = @(x)1./(1-exp(a^2*x).*erfc(a*x.^(1/2)));
integral(fun,0,1000)

카테고리

Help CenterFile Exchange에서 Numerical Integration and Differential Equations에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by