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!

