필터 지우기
필터 지우기

I just want to know the reason why the integral function doesn't work this way?

조회 수: 7 (최근 30일)
%p is a function handle so what's the problem.
Now i am working on finding response of the rectangular plate. So, after solving I get a function as an output and I gotta integrate that function between a certain interval to find a constant. So let us assume f is the function i got as an output. If i give f as an input to integral function I am geting an error saying "FUNCTION PASSED TO INTEGRAL FUNCTION MUST BE A FUNCTION HANDLE" so i created another variable p and made it a function handle now i am getting an error saying "INPUT FUNCTION MUST RETURN SINGLE OR DOUBLE VALUES. FOUND SYM". Looking for someone's help. Any way to solve this issue?
syms x;
f= x^2;
p = @(x) f;
q = integral(p,0,1)

채택된 답변

Bjorn Gustavsson
Bjorn Gustavsson 2020년 4월 15일
You have to convert the symbolic function to a function-handle that returns a scalar double. You can do this for your example problem:
F = matlabFunction(f);
q = integral(F,0,1);
The first step converts the symbolic expression into a matlab-function-handle.
HTH
  댓글 수: 1
Steven Lord
Steven Lord 2020년 4월 15일
Another alternative, if you want to perform the integration symbolically, would be to call the int function instead of integral. The signature is slightly different (you need to specify the variable over which you're integrating) but they're still quite similar.
syms x
f = x^2;
int(f, x, 0, 1)

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by