code for integral function
조회 수: 5 (최근 30일)
이전 댓글 표시
∫_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
댓글 수: 0
답변 (1개)
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 :)
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!