필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

Solution of given Integration

조회 수: 1 (최근 30일)
Shashibhushan Sharma
Shashibhushan Sharma 2018년 12월 21일
마감: MATLAB Answer Bot 2021년 8월 20일
Please help to solve the integration given below:
where K1, K2, A, B and C are constants. The dummy variable is x.
  댓글 수: 10
Walter Roberson
Walter Roberson 2018년 12월 23일
편집: Walter Roberson 2018년 12월 24일
It looks to me as if no closed form solution exists for those particular constants. It looks like it comes out as
int(-exp(-6/x)*(exp(-4*x)*(1+4*x+8*x^2+32/3*x^3+32/3*x^4)-1)/x^2,x = 2 .. 30)
or a constant multiple of that.
Shashibhushan Sharma
Shashibhushan Sharma 2018년 12월 24일
편집: Shashibhushan Sharma 2018년 12월 24일
I think, it is not possible to solve in closed form.

답변 (1개)

madhan ravi
madhan ravi 2018년 12월 21일
편집: madhan ravi 2018년 12월 21일
gamma = @(A,B) A .* B .* cos( A.*B ) ; % an example how to proceed
A = 4 ;
B = 6 ;
C = 10 ;
fun = @(x) ( gamma( A , B .* x ) .* exp( C ./ x) ) ./ x.^2 ;
K1 = 8 ;
K2 = 13 ;
Result = integral( fun , K1 , K2 )
  댓글 수: 1
Shashibhushan Sharma
Shashibhushan Sharma 2018년 12월 23일
편집: Shashibhushan Sharma 2018년 12월 23일
Thnak for trying to give answer of my question.
But Function should be written as:
fun = @(x) ( gamma(A).*gammainc(B .* x, A ) .* exp( C ./ x) ) ./ x.^2 ;
But I want a closed form solution of this integration.

이 질문은 마감되었습니다.

태그

Community Treasure Hunt

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

Start Hunting!

Translated by