how to set up a function involving integrals integral bounds

조회 수: 11 (최근 30일)
Maggie liu
Maggie liu 2021년 7월 29일
댓글: Maggie liu 2021년 8월 2일
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);

채택된 답변

Steven Lord
Steven Lord 2021년 7월 29일
The integral function is for numeric integration.
The int function is for symbolic integration.
  댓글 수: 2
Maggie liu
Maggie liu 2021년 7월 30일
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!
Maggie liu
Maggie liu 2021년 8월 2일
I re-installed the symbolic math add on and it worked

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

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by