como resolver este en matlab

답변 (2개)

Walter Roberson
Walter Roberson 2024년 11월 21일

0 개 추천

exp(x.^2 + y.^2)

댓글 수: 3

clc
clear
syms x y;
f = exp(x.^2 + y.^2);
I_dx =int(f,x,1,6)
I_dxdy= int(I_dx,y,-6,8)
respuesta
I_dx =
-(pi^(1/2)*exp(y^2)*(erfi(1) - erfi(6)))/2
I_dxdy =
-(pi*(erfi(6) + erfi(8))*(erfi(1) - erfi(6)))/4
Mauricio
Mauricio 2024년 11월 21일
intento resolver esta integral doble y no me da ningun resultado
-(pi*(erfi(6) + erfi(8))*(erfi(1) - erfi(6)))/4 is the result of the double integration. It is the exact result.
If you want a numeric approximation to the result, then use
double(I_dxdy)
or else use
sympref('FloatingPointOutput', true)
but I do not recommend doing that.

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

Image Analyst
Image Analyst 2024년 11월 21일

0 개 추천

What do you want to do? Plot it? Integrate it over some area?
¿Qué quieres hacer? ¿Graficarlo? ¿Integrarlo en alguna zona?
fontSize = 16;
X = linspace(0, 2, 100);
Y = linspace(0, 2, 100);
[x, y] = meshgrid(X, Y);
z = exp(x.^2 + y.^2);
surf(x, y, z, 'EdgeColor','none');
colormap('turbo')
colorbar
title('z = exp(x.^2 + y.^2)', 'FontSize',fontSize)
xlabel('x', 'FontSize',fontSize);
ylabel('y', 'FontSize',fontSize);
zlabel('z', 'FontSize',fontSize);

카테고리

도움말 센터File Exchange에서 Programming에 대해 자세히 알아보기

태그

질문:

2024년 11월 21일

댓글:

2024년 11월 21일

Community Treasure Hunt

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

Start Hunting!

Translated by