Effacer les filtres
Effacer les filtres

How to improve the speed of Matlab numerical integral?

13 vues (au cours des 30 derniers jours)
Mazin Mustafa
Mazin Mustafa le 9 Oct 2017
Réponse apportée : Jan le 10 Oct 2017
I am interested in computing numerical integrals in Matlab. My program evaluates multiple integrals using a "for loop". I need both accuracy and speed. So, I am using the Matlab function "quadgk". I am able to obtain the correct results but the program consumes a lot of time which makes it impractical to compute large scale problems. Do you have suggestions?

Réponse acceptée

Nicolas Schmit
Nicolas Schmit le 10 Oct 2017
If you have the parallel computing toolbox, you run can run your calculations in parallel using a parfor loop.

Plus de réponses (1)

Jan
Jan le 10 Oct 2017
What do you expect? There is no magic flag to increase the speed and no better function, which is not mentioned in the documentation.
Is your function to be integrated vectorized already? Did you reduce the number of expensive operations as far as possible (e.g. "2e-5" instead of "2*10^-5")? You want "accuracy and speed", but how much accuracy is sufficient? What about using integral?
For a more specific answer, post the relevant part of the code.

Catégories

En savoir plus sur Loops and Conditional Statements 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