How can I plot the graph for this function?

6 Ansichten (letzte 30 Tage)
Gufran Malik
Gufran Malik am 7 Jun. 2022
Bearbeitet: Torsten am 21 Aug. 2022
f(x)=symsum(2^(-m*x)*(gamma(m*x+j-1+1)/gamma(m*x-1+1))*h(j/m),j.0.Inf)
where h(j/m)=(j/m)^2+1, m=100.
Please help me out.
  5 Kommentare
Gufran Malik
Gufran Malik am 10 Jun. 2022
Thanks @Dyuman Joshi but this is giving error.
Dyuman Joshi
Dyuman Joshi am 11 Jun. 2022
It worked on my pc without any errors, but it took an eternity to run :')
(i3-5th gen, 8 gb ddr3 ram)

Melden Sie sich an, um zu kommentieren.

Akzeptierte Antwort

Torsten
Torsten am 12 Jun. 2022
Bearbeitet: Torsten am 12 Jun. 2022
m = 100;
h = @(x) x.^2+1;
x = 0:0.01:10.0;
tol = 1e-16;
for i = 1:numel(x)
Lm(i) = fun_Lm(m,h,x(i),tol);
end
plot(x,Lm)
function value = fun_Lm(m,h,x,tol)
value = 0.0;
error = Inf;
j = 0;
summand = 1.0;
while error > tol
value = value + summand;
error = abs(summand);
summand = summand * (m*x+j) * 1/2 * 1/(j+1) * h((j+1)/m)/h(j/m);
j = j + 1;
end
value = value/2^(m*x) ;
end

Weitere Antworten (1)

Gufran Malik
Gufran Malik am 17 Aug. 2022
How can we plot this function? @Torsten Please help me with this
  4 Kommentare
Gufran Malik
Gufran Malik am 21 Aug. 2022
@Torsten Thank you so much.
Gufran Malik
Gufran Malik am 21 Aug. 2022
@Walter Roberson Thank you so much.

Melden Sie sich an, um zu kommentieren.

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by