Info
이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.
How to do the matlab integral algorythm of a function using numerical methods?
조회 수: 1 (최근 30일)
이전 댓글 표시
any idea ? The function is f=x^3+9/x.
댓글 수: 0
답변 (1개)
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
댓글 수: 0
이 질문은 마감되었습니다.
참고 항목
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!