How can I define square of a handle function inside an integral?

조회 수: 19 (최근 30일)
Ashkan Rigi
Ashkan Rigi 2021년 11월 1일
댓글: Steven Lord 2021년 11월 1일
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))

채택된 답변

John D'Errico
John D'Errico 2021년 11월 1일
편집: John D'Errico 2021년 11월 1일
kk is a function handle, as is kkk. (Really creative names there. Note that using better, more descriptive names will greatly improve your code in the future, when you need to debug that code. As well, don't reuse variables like that, where you create kk as a functino handle, and then immmediately try to create a new function handle with the same name. That will only bring you down into the depths of programming hell when you try to debud code like that.)
Anyway, you CANNOT do operations like this:
kk=@(t) sqrt(kk);
or this:
k=kk/kkk;
or, this:
bs=integral(k^2,0,s(1))
Instead, you need to create a new function handle derived from it. For example:
kkfun = @(t) sqrt(kk(t));
kfun = @(t) kkfun(t)./kkk(t);
bs=integral(@(t) kfun(t).^2,0,s(1))
The point is, you do not want to square the function handle itself, but to square what it does to the operand (t). You do not want to divide two function handles, one by the other, but to divide the result of those function handles.
  댓글 수: 1
Steven Lord
Steven Lord 2021년 11월 1일
To summarize John's last paragraph, you can't do arithmetic on function handles. You can do arithmetic on the values returned by evaluating function handles.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Call C++ from MATLAB에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by