piPEN(PE)

fx with in = error [%] & out = iterations for pi series approx: (pi^2)/6 = sum (1/k^2) at k = 1 to N
24 Downloads
Updated 17 Oct 2016

View License

%% Function that computes
% Output: N = the number of iterations (if >= 1e5, then N = Inf), given
% Input: PE = percent error [%]
% to approximate pi using the pi series:
% (pi^2)/6 = summation of (1/k^2) from k = 1 to N
%
% Author: Roche de Guzman, Ph.D.
% Hofstra University
function N = piPEN(PE)

Cite As

Roche de Guzman (2026). piPEN(PE) (https://www.mathworks.com/matlabcentral/fileexchange/59789-pipen-pe), MATLAB Central File Exchange. Retrieved .

MATLAB Release Compatibility
Created with R2015a
Compatible with any release
Platform Compatibility
Windows macOS Linux
Categories
Find more on Linear Algebra in Help Center and MATLAB Answers
Version Published Release Notes
1.2.0.0

uploaded the .m file

1.1.0.0

set to N < 1e5;
if N >= 1e5, then N = Inf

1.0.0.0