p = 
inverse LaPlace transform of confluent hypergeometric function
Show older comments
hello, I want to calculate the inverse laplace transform of a characteristic function
this characteristic function is converted to hypergeometric function 

I have to get the inverse laplace transform of this function, I have written the following code:
N = 3; x_bar = 2.5; a = 1.3; b = 13; c = a+b;
syms s t
p = -1*1j*s
z = -1*((N*x_bar*(c/a)*p)/(p+1))
h = hypergeom(a,c,z)
C_slow = h/((p+1)^N)
f(t) = ilaplace(C_slow)
output of code:
z =
-(s*165i)/(2*(- 1 + s*1i))
h =
hypergeom(13/10, 143/10, -(s*165i)/(2*(- 1 + s*1i)))
do we have to put the vlaue of ''s'' to evalute the hypergeom function? I don't know what i am missing here...any help would be appreciated
2 Comments
Paul
on 4 Jul 2024
Hi Muhammad,
Doesn't the paper cited below state that the inverse Laplace of the C_N(p)_slow is unknown and numerical methods are required to solve the problem as discussed in Section 4 of that paper?
Muhammad Abdullah
on 5 Jul 2024
Accepted Answer
More Answers (0)
Categories
Find more on Creating and Concatenating Matrices in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!




