which packages do I need to use 'integral' function?

7 vues (au cours des 30 derniers jours)
Xin
Xin le 12 Oct 2012
which packages do I need to use 'integral' function? I type it on command line in 2011b and get an "Undefined function" error
>> fun = @(x) exp(-x.^2).*log(x).^2;
>> q = integral(fun,0,Inf)
Undefined function 'integral' for input arguments of type 'function_handle'.
  1 commentaire
Xin
Xin le 12 Oct 2012
it worked. thanks a lot for the answers and suggestions.

Connectez-vous pour commenter.

Réponse acceptée

Andrei Bobrov
Andrei Bobrov le 12 Oct 2012
use function quadgk
eg
>> fun = @(x) exp(-x.^2).*log(x).^2;
>> quadgk(fun,0,inf)
ans =
1.9475

Plus de réponses (2)

Ilham Hardy
Ilham Hardy le 12 Oct 2012
It is Matlab standard function, only available in R2012b.

Andreas Goser
Andreas Goser le 12 Oct 2012
This was introduced in R2012a:
"The new functions, integral, integral2, and integral3 perform numerical integration with additional support for nonrectangular and unbounded regions of integration. They are the recommended functions for performing quadrature."

Catégories

En savoir plus sur Programming 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