how to integral2?
1 visualización (últimos 30 días)
Mostrar comentarios más antiguos
elham kreem
el 16 de Mzo. de 2018
Comentada: elham kreem
el 16 de Mzo. de 2018
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 comentarios
Respuesta aceptada
Birdman
el 16 de Mzo. de 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 comentarios
Torsten
el 16 de Mzo. de 2018
Neglecting numerical aspects like division by 0, your integral is +Inf.
Best wishes
Torsten.
Más respuestas (0)
Ver también
Categorías
Más información sobre Calculus en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!