code for integral function

∫_r^(r+d)▒(E0 〖(Es) 〗^2 d^2 y^2 dy)/((d+r)^2 d^3 )
how to write code for this function in matlab.please help

回答 (1 件)

Alberto
Alberto 2014 年 4 月 7 日

0 投票

The common way to do this will be like:
syms r d y;
f= (r^(r+d))*( d^2 * y^2)/( (d+r)^2*d^3 )
F = int(f, y) % Calculate undefinite integral using variable y
G= int(F,x) % and again using x
a=int(F, x, -15, 15) % for definite integration
Good luck :)

カテゴリ

質問済み:

an
2014 年 4 月 7 日

回答済み:

2014 年 4 月 7 日

Community Treasure Hunt

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

Start Hunting!

Translated by