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

12 次查看(过去 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 个)

Community Treasure Hunt

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

Start Hunting!

Translated by