フィルターのクリア

Info

この質問は閉じられています。 編集または回答するには再度開いてください。

How to do the matlab integral algorythm of a function using numerical methods?

1 回表示 (過去 30 日間)
Altin Guberi
Altin Guberi 2015 年 5 月 5 日
閉鎖済み: MATLAB Answer Bot 2021 年 8 月 20 日
any idea ? The function is f=x^3+9/x.

回答 (1 件)

Gopalkrishna Bhat
Gopalkrishna Bhat 2015 年 5 月 5 日
Hi Altin,
Indefinite integration can be done in matlab using the int() function. For the above function the codes are
syms x;
int(x^3+9/x,x);
You integrate numerically if limits are provided using Trapezoidal method. http://in.mathworks.com/help/matlab/ref/trapz.html#bua4lsr

この質問は閉じられています。

タグ

製品

Community Treasure Hunt

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

Start Hunting!

Translated by