quad for multi variable functions

3 vues (au cours des 30 derniers jours)
frwmetric
frwmetric le 27 Mai 2013
I have a function which has 4 different variables and I want to find the numerical integration of it with quad command in case of just one variable. Is it possible?
for instance,
my functions f(x,y,z,t)
quad(f(x,y,z,t),x,0,inf)---> numerical integration in case of x
Therefore I need symbolic result...
Or do you have any other idea?

Réponses (1)

Matt J
Matt J le 27 Mai 2013
Modifié(e) : Matt J le 27 Mai 2013
If you know the values of the other variables you could do
y=y0; %known fixed values.
z=z0;
t=t0;
quad(@(x) f(x,y,z,t), 0,largeNum)

Catégories

En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange

Tags

Community Treasure Hunt

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

Start Hunting!

Translated by