MATLAB: Use int() with multiple lower bound

integrationMATLAB

Hello, I have a matrix t = [0:0.1:10]
and I want to do int(y,x,t,Inf)
where y is just my function and x is my symbol Matlab give me
??? Error using ==> mupadmex Error in MuPAD command: Illegal argument [checkNumber]
I'm assuming that the int function won't take in matrix of t. Is there any way around this? I just need it to do integrate for all the lower bound in the matrix and then give me back a matrix.
Thank you very much

Best Answer

What about a loop?
t = 0:0.1:10;
Result = zeros(size(t));
for it = 1:length(t)
Result(it) = int(y, x, t(it), Inf);
end