Help with Homework Question
Mostrar comentarios más antiguos
Hi, I am really stuck on this question and have no idea how to do it. Can someone please help..

Formula for true relative error is (pi- Calculated pi)/pi
1 comentario
Amit
el 30 de En. de 2014
Again, A homework problem need to be done by you. First it's unethical for someone else to do your homework.
Post your effort or idea on how to solve it, then others will help you.
Respuestas (1)
Moussa Attati
el 21 de Oct. de 2022
function [PI,RelativeErr] = pi_func(n)
P=0;
for i = 1 : n
PI =4*(((-1)^(i-1))*1/(2*i-1))+P ;
P = PI;
end
RelativeErr=1-(PI/pi) ;
end
Categorías
Más información sobre Get Started with MATLAB en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!