필터 지우기
필터 지우기

Integral of exponential function that contains another integral

조회 수: 2 (최근 30일)
djr
djr 2020년 5월 17일
댓글: Ameer Hamza 2020년 5월 17일
Hello everyone,
I have the following integral:
where and c is a constant in one case and in another case. In addition, my r values are
r = linspace(0,4,100);
Can you please help me with the way to code this?
Thank you,
djr

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 5월 17일
Try this
inner_int = @(t) integral(@(s) (1-exp(-s))./s, 0, t);
H = @(xi) integral(@(t) exp(-t+3*inner_int(t)), 0, xi, 'ArrayValued', 1);
r = linspace(0,4,100);
c = 1; % for example
Xi = c*r.^2;
H_val = zeros(size(Xi));
for i=1:numel(Xi)
H_val(i) = H(Xi(i));
end
plot(Xi, H_val);
xlabel('\xi');
ylabel('H(\xi)')
  댓글 수: 2
djr
djr 2020년 5월 17일
This is working perfectly. You helped me a lot!
Ameer Hamza
Ameer Hamza 2020년 5월 17일
I am glad to be of help.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Get Started with MATLAB에 대해 자세히 알아보기

제품


릴리스

R2018b

Community Treasure Hunt

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

Start Hunting!

Translated by