I have a function defined like this:
syms t;
syms y;
x(t,y) = t*y;
Now I want to know the integral of this symbolic expression, by fixing y as a constant, from 0 to inf.
is there a way to do this using a symbolic expression, containing 2 variables? So I can have a symbolic expression only depending of one variable.