equation 7.4.10 from handbook of mathematical functions

1 visualización (últimos 30 días)
dear friends
how i can find the integral in the attached photo by MATLAB
fun = @(t) exp(-t.^2)/(t+1);
q = integral(fun,0,inf)
%%ı tried to write it in this way also but i couldnt have asolution
syms a t x
fun2=exp(-2*t.^2)/(t+1);
sol1 = int(fun2,t,0,inf);
  1 comentario
Walter Roberson
Walter Roberson el 8 de Feb. de 2018
For x = 1, MATLAB and Maple both give a MeijerG based result; Wolfram Alpha (Mathematica) times out trying to compute it in the free version.
For x not 1, none of the three will find the solution shown -- which, after all, just substitutes one indefinite integral for another.

Iniciar sesión para comentar.

Respuesta aceptada

Birdman
Birdman el 8 de Feb. de 2018
fun = @(t) exp(-t.^2)/(t+1);
q = integral(fun,0,inf,'ArrayValued',true)

Más respuestas (2)

Star Strider
Star Strider el 8 de Feb. de 2018
you need to vectorise the division as well as the exponentiation:
fun = @(t) exp(-t.^2)./(t+1);
↑ ← VECTORIZE HERE AS WELL
q = integral(fun,0,inf)
q =
0.605133652503344

samriti bali
samriti bali el 29 de Abr. de 2019
To walter Roberson sir .... i have a query regarding meijer G function...sir can u please tell me how to simulate the equation of meijer G function in matlab shown in pic ..sir Plz reply
query.jpg
  3 comentarios
samriti bali
samriti bali el 30 de Abr. de 2019
Respected sir, i have already gone through this link and all other links....but nothing is clear from it...that's why i posted my query here...if u can tell me the format to write this equation in matlab then ur help will be beneficial for me.
Walter Roberson
Walter Roberson el 1 de Mayo de 2019
Calculate one term where j=0. The result will be 0 if the term is 0 and otherwise will be infinity times the sign of the term. You have posted an infinite sum whose terms do not vary with the variable of summation so you will either get +inf, 0, or -inf

Iniciar sesión para comentar.

Categorías

Más información sobre Mathematics 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!

Translated by