Evaluate integral at specific value
이전 댓글 표시
I have the following mathematical function f=5sin(x), I use the int(f) to obtain the integral of my expression. Is there a way for me to evaluate the result of the integral at a specifc value, lets say 4,32,
댓글 수: 3
SALAH ALRABEEI
2021년 6월 7일
% define your function f, and the value a
syms x
a=
f=
I = int(f);
subs(I,x,a)
Ahmed Abdulla
2021년 6월 7일
Ahmed Abdulla
2021년 6월 7일
채택된 답변
추가 답변 (0개)
카테고리
도움말 센터 및 File Exchange에서 Programming에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

