Filter löschen
Filter löschen

Info

Diese Frage ist geschlossen. Öffnen Sie sie erneut, um sie zu bearbeiten oder zu beantworten.

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

1 Ansicht (letzte 30 Tage)
Altin Guberi
Altin Guberi am 5 Mai 2015
Geschlossen: MATLAB Answer Bot am 20 Aug. 2021
any idea ? The function is f=x^3+9/x.

Antworten (1)

Gopalkrishna Bhat
Gopalkrishna Bhat am 5 Mai 2015
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

Diese Frage ist geschlossen.

Produkte

Community Treasure Hunt

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

Start Hunting!

Translated by