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 descargas
Actualizado 17 oct 2016

Ver licencia

%% 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)

Citar como

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

Compatibilidad con la versión de MATLAB
Se creó con R2015a
Compatible con cualquier versión
Compatibilidad con las plataformas
Windows macOS Linux
Categorías
Más información sobre Linear Algebra en Help Center y MATLAB Answers.

Community Treasure Hunt

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

Start Hunting!
Versión Publicado Notas de la versión
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