p =
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?
Brother Muhammad,
You asked, 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
The answer is yes, you need to assign a specific value to the variable s before evaluating the hypergeometric function h because the hypergeometric function requires numerical values for its parameters to evaluate correctly.
>> % Corrected 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));
% Assign a specific value to s s_val = 2; % Example value for s z_val = subs(z, s, s_val); h = hypergeom(a, c, z_val); C_slow = h/((p+1)^N); f(t) = ilaplace(C_slow);
% Display test results s_val z_val h f(t)
Hope, this will help resolve your issue.
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!