How to make a 'case' go over each element in a vector ?
1 次查看(过去 30 天)
显示 更早的评论
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 个评论
Image Analyst
2023-2-4
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?
回答(1 个)
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Loops and Conditional Statements 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!