Plotting multiple outputs of a function through a For loop

I am trying to plot the outputs of a function in my main through a For loop. I define the function (ballMC) in a separate m-file, and then call it to my main with specified inputs defined through the For loop. I tried to map the results of the For loop into an array, but I ended up getting the following message 'Array indices must be positive integers or logical values.' In the two lines of code before ending the loop. Any insight would be very much appreciated.
My code is as follows
n=2
Resultsestimate= zeros(50,1, 'double');
Resultshalfwidth =zeros(50,1, 'double');
for Nreps=logspace(1,6);
[estimate, halfwidth]=ballMC(Nreps,n);
Resultsestimate(Nreps)= estimate;
Resultshalfwidth(Nreps)= halfwidth;
end
figure(1)
plot(Nreps,Resultsestimate)
figure(2)
plot(Nreps,Resultshalfwidth)

4 comentarios

What's ballMC?
ADragon
ADragon el 22 de Ag. de 2018
Editada: ADragon el 22 de Ag. de 2018
It does not appear that Nreps is an integer value that can be used as an array index. You could try:
Nreps = logspace(1,6);
for i = 1:length(Nreps)
[estimate, halfwidth]=ballMC(Nreps(i),n);
Resultsestimate(i)= estimate;
Resultshalfwidth(i)= halfwidth;
end
Or with fewer intermediate variables:
Nreps = logspace(1,6);
for i = 1:length(Nreps)
[Resultsestimate(i), Resultshalfwidth(i)] = ballMC(Nreps(i),n);
end
I would also initialize your result vectors too before the for loop (the code analyzer likes this).
@ADragon: you should move your comment to an answer.
Hi Stephen, you are right. Thanks!

Iniciar sesión para comentar.

 Respuesta aceptada

It does not appear that Nreps is an integer value that can be used as an array index. You could try:
Nreps = logspace(1,6);
for i = 1:length(Nreps)
[estimate, halfwidth]=ballMC(Nreps(i),n);
Resultsestimate(i)= estimate;
Resultshalfwidth(i)= halfwidth;
end
Or with fewer intermediate variables:
Nreps = logspace(1,6);
for i = 1:length(Nreps)
[Resultsestimate(i), Resultshalfwidth(i)] = ballMC(Nreps(i),n);
end
I would also initialize your result vectors too before the for loop (the code analyzer likes this).

2 comentarios

+1 clear and useful answer
Emma Humphrey
Emma Humphrey el 24 de Ag. de 2018
Editada: Emma Humphrey el 24 de Ag. de 2018
ADragon thank you very much for your answer , it completely works now.

Iniciar sesión para comentar.

Más respuestas (0)

Categorías

Preguntada:

el 21 de Ag. de 2018

Editada:

el 24 de Ag. de 2018

Community Treasure Hunt

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

Start Hunting!

Translated by