como resolver este en matlab

28 visualizaciones (últimos 30 días)
Mauricio
Mauricio hace alrededor de 15 horas
Comentada: Walter Roberson hace alrededor de 14 horas
e^(x^2+y^2)

Respuestas (2)

Walter Roberson
Walter Roberson hace alrededor de 15 horas
exp(x.^2 + y.^2)
  3 comentarios
Mauricio
Mauricio hace alrededor de 15 horas
intento resolver esta integral doble y no me da ningun resultado
Walter Roberson
Walter Roberson hace alrededor de 14 horas
-(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.

Iniciar sesión para comentar.


Image Analyst
Image Analyst hace alrededor de 14 horas
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);

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by