I am trying to do a simple integration, I have attached the code. Could you please help me as in what am I doing wrong in the code.
function [f_value] = SurfArea ()
a=[1.78E-05 3.39E-04 0.0104 -0.05791 -16.36];
R = 30;
da = polyder(a);
syms x
integrand = int((x*sqrt(1+1/(poly2sym(da)).^2)),-R,0);
f_value = sym2poly(integrand);
end
I want to remove the warning, please help.