Im trying to use the integral function without any success...
조회 수: 1 (최근 30일)
이전 댓글 표시
Im trying to use integral to solve the following equation with the bounds from 1 to 4.
I managed to write this as (exp(-(t/3)).* sin(t^2)).
When i enter this in matlab as:
I get the following output :
While my calculator gives me the following???
What am i not getting right here??
댓글 수: 0
답변 (2개)
Walter Roberson
2022년 10월 6일
In the symbolic toolbox, int() and solve() attempt to give indefinitely precise closed-form solutions. If int() is not able to find a closed form solution then it returns the integral unevaluated. If you want numeric results, use vpaintegral() or vpasolve() respectively, or vpa() the result of the int() call, or double() the result of the int() call
format long g
syms t
f = (exp(-(t/3)).* sin(t^2))
d = int(f, t, 1, 4)
vpa(d)
double(d)
vpaintegral(f, t, 1, 4)
Davide Masiello
2022년 10월 6일
syms t
f = exp(-t/3)* sin(t^2);
I = int(f,t,1,4)
This means int cannot compute the value of the definite integral. You could numerically approximate the integral by using vpa.
Fvpa = vpa(I)
참고 항목
카테고리
Help Center 및 File Exchange에서 Calculus에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!