code for integral function

조회 수: 5 (최근 30일)
an
an 2014년 4월 7일
답변: Alberto 2014년 4월 7일
∫_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일
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 :)

카테고리

Help CenterFile Exchange에서 Calculus에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by