How can I define square of a handle function inside an integral?
Show older comments
Hello every body. This is my code and I get the error " Undefined function 'sqrt' for input arguments of type 'function_handle'."
a=1;b=2;c=3;s=10;tt=12;
kkk=@ (t) (sqrt((3.*a(1).*(t-tt(1)).^2+2.*b(1).*(t-tt(1))+c(1)).^2)).^3;
kk=@(t) (18*a(1).^2*(t-tt(1)).^2+2.*b(1).*6.*a(1).*6.*a(1).*b(1).*(t-tt(1)).^2 ...
+2.*b(1).^2.*(t-tt(1))+6.*a(1).*c(1).*(t-tt(1))).^2;
kk=@(t)sqrt(kk);
k=kk/kkk;
bs=integral(k^2,0,s(1))
Accepted Answer
More Answers (0)
Categories
Find more on Operators and Elementary Operations in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!