Effacer les filtres
Effacer les filtres

Basic Integration [ Integration limits ]

2 vues (au cours des 30 derniers jours)
sese
sese le 19 Juil 2013
Hello Guys
Just i am wondering how to solve an integration problem in MATLAB for this equation?? here is the problem below
a= 3.43 int Q*n dr
where n dependent variable on r
Regards

Réponses (1)

Wayne King
Wayne King le 19 Juil 2013
Modifié(e) : Wayne King le 19 Juil 2013
Is Q a constant? I'm assuming you mean that n is function of r, like n(r)
Suppose n(r) = r^2 and you want to integrate from [-2,2]
integral(@(r) r.^2,-2,2)
If you don't have a version of MATLAB with integral(), you have options like trapz()
r = -2:0.02:2;
n = r.^2;
trapz(r,n)
  1 commentaire
sese
sese le 23 Juil 2013
Modifié(e) : sese le 23 Juil 2013
Q is not constant by the way and the integration is undefined.
Q=a*b; b=X^R; R=10; b=c*r; c=0.801; r=0.1;
BY the way, i have a MATLAB version :) Thank you

Connectez-vous pour commenter.

Catégories

En savoir plus sur Numerical Integration and Differentiation dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by