Write a matlab function for approximating the value of pi (certain equation)
Ältere Kommentare anzeigen
Hi.
Task:
Write a program that calculates the approximation of pi when it is given an upper limit of the sum 𝑁.

Code that I'm trying to use:
function p = fun_my(n)
p = 0;
for k = 1:n
p = p + sqrt(8 + sum(16./((2*(1:n) - 1).^2 .* (2*(1:n) + 1).^2)));
end
Thanks for advance!
Akzeptierte Antwort
Weitere Antworten (0)
Kategorien
Mehr zu Software Development finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!