MATLAB: How to use integral3 when the integrand is a array

how to turn into matlabthis is mathematica

Guu := NIntegrate[ k^2 Sin[x]Tuu, {x, 0, Pi/2}, {y, 0, Pi/4}, {k, kc*Sqrt[mu + delta – v], ku}];

Best Answer

You don't. integral3() can only handle scalar functions.
Sometimes you can transform the situation into an array of functions, and then use arrayfun() to automate the integration.