how to set up a function involving integrals integral bounds

10 views (last 30 days)
I'm trying to set up a function that looks like where a is a constant.
how can I do this? when I try using the following code, it tells me that "Limits of integration must be double or single scalars."
Many thanks!
syms f(x)
f(x) = integral(fun,a,x);

Accepted Answer

Steven Lord
Steven Lord on 29 Jul 2021
The integral function is for numeric integration.
The int function is for symbolic integration.
  2 Comments
Maggie liu
Maggie liu on 30 Jul 2021
I'm still a bit confused...I looked up the documentation on int function, and just to test it out I tried the following sample code
syms x
f = cos(x)/sqrt(1 + x^2);
Fint = int(f,x,[0 10])
and got the this error message
Error using symfun/subsref (line 189)
Invalid argument at position 2. Symbolic function expected 1 input arguments but received 3.
Thanks for your help!

Sign in to comment.

More Answers (0)

Categories

Find more on Symbolic Math Toolbox 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!