How to define this intergral
1 回表示 (過去 30 日間)
古いコメントを表示
I am trying to find the integral between 0 and h but matlab keeps telling me that the int is not defined but every integral example i have checked seems to indicate that the integral is programmed into matlab but i can't find it. Is the formula below suitable to find the integral or am i missing something key. Any help would be appreciated.
h=2
Q=int(0,h)
1 件のコメント
Azzi Abdelmalek
2013 年 5 月 25 日
編集済み: Azzi Abdelmalek
2013 年 5 月 25 日
int(0,h)?
is an integral between 0 and h of which function?
採用された回答
Azzi Abdelmalek
2013 年 5 月 25 日
You can use a quad function. Example a function f(x)=x^2+3
f= @(x) x.^2+3;
Q = quad(f,0,10) % Integral between 0 and 10
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!