필터 지우기
필터 지우기

Greetings dear friends, I am trying to graph this integral so that I can obtain a graph x =f(t), thanks for your help!

조회 수: 1 (최근 30일)
I need to get this curve in my 3D graph:
My code which I was working is this:
Thank you dear friends!
  댓글 수: 4
Paul
Paul 2022년 2월 26일
How does exp(i*p*x) in the equation become just cos(p*x) in the code? Unless of course only the real part of the integral is goal.
Torsten
Torsten 2022년 2월 26일
The imaginary part of the function is odd in p - so the integral is 0.

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

채택된 답변

Voss
Voss 2022년 2월 25일
편집: Voss 2022년 2월 25일
Note that t > 0 and the grids on the surface in the desired image are more widely spaced than the actual points where the surface has been calculated (i.e., there is curvature in between grid lines).
t = linspace(0.0001,2,50);
x = linspace(-2,2,50);
[T,X] = meshgrid(t,x);
for i = 1:numel(x)
for j = 1:numel(t)
% f = @(p)1/pi*sqrt(2*pi)*sin(p)./p.*exp(-T(i,j).*p.^2).*cos(p.*X(i,j));
f = @(p)1/(pi*sqrt(2*pi))*sin(p)./p.*exp(-T(i,j).*p.^2).*cos(p.*X(i,j));
F(i,j) = integral(f,-Inf,Inf);
end
end
surf(T,X,F);
colormap(flip(autumn()));
xlabel('t');
ylabel('x');
zlabel('u(x,t)');
  댓글 수: 2
Torsten
Torsten 2022년 2월 25일
f = @(p)1/(pi*sqrt(2*pi))*sin(p)./p.*exp(-T(i,j).*p.^2).*cos(p.*X(i,j));
instead of
f = @(p)1/pi*sqrt(2*pi)*sin(p)./p.*exp(-T(i,j).*p.^2).*cos(p.*X(i,j));
Voss
Voss 2022년 2월 25일
Oh yeah! Thanks!
I saw your comment before, but then I just typed in the code from the screenshot in the question anyway. D'oh!

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

추가 답변 (1개)

Lewis HC
Lewis HC 2022년 3월 1일
I really don't know what I would do without your great help, thank you very much dear friends, you are the best!

카테고리

Help CenterFile Exchange에서 Directed Graphs에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by