I have a function f(x, y, z, t)
which has 4 different variables, and I want to find the numerical integration of it with quad
in case of just one variable:
quad(f(x,y,z,t), x, 0, inf) %// numerical integration in case of x
Is it possible? I assume I need symbolic result. Do you have any other idea?