이 질문을 팔로우합니다.
- 팔로우하는 게시물 피드에서 업데이트를 확인할 수 있습니다.
- 정보 수신 기본 설정에 따라 이메일을 받을 수 있습니다.
how to do definite integration when the integrand has a constant term
조회 수: 2 (최근 30일)
이전 댓글 표시

How to find the value of this integral in matlab ? q should remain as it is in the final answer as I is a function of q
sigma= 1/(1.5e-12)
L=6.4747e3
k=2*pi*1.8331/(390e-12)
D=2.3167e-4
omega sholud me from 379.62 to 389.62
댓글 수: 11
Akriti Raj
2021년 7월 22일
Yes, can you please write the matlab code. I am new to matlab and I have been struggling with this problem since long.
Walter Roberson
2021년 7월 22일
I think I need a higher resolution image of the equation.
Also please confirm that I is a function of the derivative of q as it appears to say I(q') =
Walter Roberson
2021년 7월 22일
편집: Walter Roberson
2021년 7월 22일
format long g
Q = @(v) sym(v); %convert to rational
Pi = Q(pi);
sigma = 1/(Q(1.5)*10^-12)
sigma =
L = Q(64747)/10
L =
k = 2 * Pi* Q(18331)/10^4/(Q(390)*10^-12)
k =
D = Q(23167)*10^-8
D =
omega_min = Q(37962)/100
omega_min =
omega_max = Q(38962)/100
omega_max =
syms q
syms omega
inner = exp((omega/sigma)^2/2) * sinc(L*q^2/k + D*omega*L/2).^2
inner =

I = 1/(sigma * sqrt(2*Pi)) * int(inner, omega, omega_min, omega_max)
I =

simplify(I)
ans =

inner_approx = taylor(inner, omega, (omega_min+omega_max)/2, 'order', 4)
inner_approx =

I_approx = 1/(sigma * sqrt(2*Pi)) * int(inner_approx, omega, omega_min, omega_max)
I_approx =

simplify(I_approx)
ans =

fplot(I, [-5 5]); title('exact')

double(subs(I,q,[-5 -1 0 1 5]))
ans = 1×5
3.49318454188821e-18 3.49318582811878e-18 3.4931858817153e-18 3.49318582811878e-18 3.49318454188821e-18
vpa(subs(I,q,[-5 -1 0 1 5]*10^9))
ans =

fplot(I_approx, [-5 5]); title('approximated')

double(subs(I_approx,q,[-5 -1 0 1 5]))
ans = 1×5
-3.2139136293569e-16 -3.21388912778066e-16 -3.21388810680452e-16 -3.21388912778066e-16 -3.2139136293569e-16
vpa(subs(I_approx,q,[-5 -1 0 1 5]*10^9))
ans = 

Walter Roberson
2021년 7월 22일
Notice that up in the 10^9 area, that the integral could not be calculated with the default integration options.
Note that the taylor approximation is probably pretty wrong by the time of 10^9
What is the expected range of q ?
David Goodmanson
2021년 7월 22일
Hi Akriti,
since you refer to this as a definite integral, what are the limits of integration?
답변 (0개)
참고 항목
태그
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!오류 발생
페이지가 변경되었기 때문에 동작을 완료할 수 없습니다. 업데이트된 상태를 보려면 페이지를 다시 불러오십시오.
웹사이트 선택
번역된 콘텐츠를 보고 지역별 이벤트와 혜택을 살펴보려면 웹사이트를 선택하십시오. 현재 계신 지역에 따라 다음 웹사이트를 권장합니다:
또한 다음 목록에서 웹사이트를 선택하실 수도 있습니다.
사이트 성능 최적화 방법
최고의 사이트 성능을 위해 중국 사이트(중국어 또는 영어)를 선택하십시오. 현재 계신 지역에서는 다른 국가의 MathWorks 사이트 방문이 최적화되지 않았습니다.
미주
- América Latina (Español)
- Canada (English)
- United States (English)
유럽
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom(English)
아시아 태평양
- Australia (English)
- India (English)
- New Zealand (English)
- 中国
- 日本Japanese (日本語)
- 한국Korean (한국어)

