How to integrate SS y*exp(x) dxdy using matlab?
8 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Mathidiot Superfacial
el 11 de Abr. de 2016
Editada: Roger Stafford
el 11 de Abr. de 2016
As the title asks. the boundary is xmin=y/4 and xmax=6-0.5*y, ymin=0, and ymax=4
1 comentario
Roger Stafford
el 11 de Abr. de 2016
Editada: Roger Stafford
el 11 de Abr. de 2016
This is a problem you can work by hand using ordinary methods of integral calculus to get a precise answer. Probably the symbolic toolbox can do the same.
Respuesta aceptada
jgg
el 11 de Abr. de 2016
I think this should work; you want the integral2 function.
fun = @(x,y)(x.*exp(y));
ymin = @(x)(x/4);
ymax = @(x)(6 - 0.5*x);
q = integral2(fun,0,4,ymin,ymax)
0 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Calculus en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!