How can i make the limits of integration scalars?
y = rand(150000,1);
x = rand(150000,1);
u=y.^x;
v=y;
z = quad(@(u) 1./log(v),0,u);
Error using quad (line 70) The limits of integration must be scalars.
Error in lnplot (line 5) z = quad(@(u) 1./log(v),0,u)