How to make a 'case' go over each element in a vector ?

1 visualización (últimos 30 días)
Julia Dombroski
Julia Dombroski el 4 de Feb. de 2023
Comentada: Image Analyst el 4 de Feb. de 2023
I want to modify case 'f' in my function to have it move over each element in a vector.
For example, in the vector TIMES I have elements that are times cues. What I want is, everytime I press f, I get the object tcues updaded to be one element in TIMES. tcues will be used to plot an interactive spectrogram.
TIMES=[590, 1090, 2090];
so every time I press 'f' want to have
tcue = TIMES(1)+floor(NS)-0.5 ;
then
tcue = TIMES(2)+floor(NS)-0.5 ;
and so forth...
all I have now is
case 'f'
tcue = TIMES()+floor(NS)-0.5 ;
done = 1 ;
Any insigts are appreciated.
  1 comentario
Image Analyst
Image Analyst el 4 de Feb. de 2023
No idea what yoiu want. But it looks like maybe you want a while loop that loops as long as someone hits a key. And we don't know what the switch line looks like because you forgot to include it. Is it testing the character value of the key they typed?

Iniciar sesión para comentar.

Respuestas (1)

David Hill
David Hill el 4 de Feb. de 2023
tcue = TIMES+floor(NS)-0.5;

Categorías

Más información sobre Startup and Shutdown 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