필터 지우기
필터 지우기

Info

이 질문은 마감되었습니다. 편집하거나 답변을 올리려면 질문을 다시 여십시오.

How to do the matlab integral algorythm of a function using numerical methods?

조회 수: 1 (최근 30일)
Altin Guberi
Altin Guberi 2015년 5월 5일
마감: MATLAB Answer Bot 2021년 8월 20일
any idea ? The function is f=x^3+9/x.

답변 (1개)

Gopalkrishna Bhat
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

이 질문은 마감되었습니다.

태그

제품

Community Treasure Hunt

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

Start Hunting!

Translated by