Borrar filtros
Borrar filtros

setting variable to true or false

71 visualizaciones (últimos 30 días)
Kelsey Pettrone
Kelsey Pettrone el 7 de Sept. de 2020
Comentada: Sulaymon Eshkabilov el 8 de Sept. de 2020
I need to set the variable doanimate to true or false. and if its true the plot animates and if its false the plot doesn't. I dont know if i am supposed to have a user input or not but im confused on how to make a variable true or false
please help
  1 comentario
Rik
Rik el 7 de Sept. de 2020
doanimate=true;
doanimate=false;
What exactly is your question? We don't know anything about your homework assignment, so you will have to explain the context and the task.

Iniciar sesión para comentar.

Respuestas (1)

Sulaymon Eshkabilov
Sulaymon Eshkabilov el 7 de Sept. de 2020
Hi,
As understood your question, you'd need to write a code something similar to this one:
WHAT_2_do = input('Enter 1 to animate the plot; 0 do nothing ');
if WHAT_2_do ==1
for ii = 1:13
rng(ii)
Data = randi([0, 13], 1,13);
plot(Data, '-o'), hold all
drawnow, pause(0.05)
end
else
for ii = 1:13
rng(ii)
Data = randi([0, 13], 1,13);
plot(Data, 'o'), hold all
end
  2 comentarios
Rik
Rik el 8 de Sept. de 2020
This is probably a homework question, so I would be reluctant to post complete solutions.
Sulaymon Eshkabilov
Sulaymon Eshkabilov el 8 de Sept. de 2020
I will take a note on this issue from now and on. Thanks Rik.

Iniciar sesión para comentar.

Categorías

Más información sobre Animation en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

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

Start Hunting!

Translated by