how to integral2?
1 vue (au cours des 30 derniers jours)
Afficher commentaires plus anciens
how can i integral a function which was written in matlab but there is wrong , i dont no where it is :
syms tau
syms y
f= @(y,tau)y*exp(-0.5.*y.^2/ tau)
expecty=integral2(f, -2,4,0,Inf,'auto')
0 commentaires
Réponse acceptée
Birdman
le 16 Mar 2018
integral2 is defined for function handle, therefore you do not need symbolic variables:
f= @(y,tau)y.*exp(-0.5.*y.^2./ tau)
expecty=integral2(f, -2,4,0,Inf,'auto')
6 commentaires
Torsten
le 16 Mar 2018
Neglecting numerical aspects like division by 0, your integral is +Inf.
Best wishes
Torsten.
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Calculus 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!