how to do a while loop to estimate pi using monte carlo method
Mostrar comentarios más antiguos
hi guys..sorry very new to matlab. i have been trying to write a while loop code to estimate pi using monte carlo method so it displays number of hits and with a tollerance of about 1e-4. please find attached the code
function [hits]=mypi_tolarance(x,y)
hits=0;
for n=1:10000
x=rand;
y=rand;
hit=x^2+y^2<=1;
hits=hits+hit;
end
while 1
pi_est=hits/10000*4;
if pi_est<3.14||pi_est>3.142
break
end
disp(pi_est)
disp(hits)
end
5 comentarios
James Tursa
el 6 de Abr. de 2020
What is your question? Can you give us the actual wording of your assignment so we know what type of while loop is expected? Use pi in your code instead of 3.14
nyasa
el 7 de Abr. de 2020
darova
el 7 de Abr. de 2020
What about this?

nyasa
el 10 de Abr. de 2020
darova
el 10 de Abr. de 2020
Please?
Respuesta aceptada
Más respuestas (0)
Categorías
Más información sobre Monte-Carlo en Centro de ayuda y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!