Info
Cette question est clôturée. Rouvrir pour modifier ou répondre.
How to do the matlab integral algorythm of a function using numerical methods?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
any idea ? The function is f=x^3+9/x.
0 commentaires
Réponses (1)
Gopalkrishna Bhat
le 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
0 commentaires
Cette question est clôturée.
Voir également
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!