Borrar filtros
Borrar filtros

Tic Toc seems disturb the operation of if-else function in the for-loop

2 visualizaciones (últimos 30 días)
M Min
M Min el 18 de Abr. de 2017
Respondida: M Min el 19 de Abr. de 2017
Hi,
I put the function tic and toc in the for loop but it looks that it disturb the working of if-else function in the same loop. Below is my code.
A = 10;
order = randperm(A);
for Trial = 1:A;
ImageOrder = [num2str(order(Trial)) '.jpg'];
IMG = imread(ImageOrder);
imshow(IMG);
Start = tic;
k = waitforbuttonpress;
Key(Trial) = double(get(gcf,'CurrentCharacter'));
if order(Trial) < 6;
if Key == 28
IMG_X = imread('x.jpg');
imshow(IMG_X);
pause(1);
end
else order(Trial) > 5;
if Key == 29
IMG_X = imread('x.jpg');
imshow(IMG_X);
pause(1);
end
end
Elapsed(Trial) = toc(Start);
end
Before I put Tic and Toc in the for-loop, if-else functions were working fine, but now they are not working. Is it correct that tic and toc disturb the operation of if-else? Thanks!
  1 comentario
Rik
Rik el 18 de Abr. de 2017
I don't any reason why this would be the case. Sometimes old variables can stick around longer than they should, which may cause unexpected results. You can avoid this by using functions instead of scripts, or (if you have a VERY good reason not to use functions) clear variables.
If you already this either of these, I don't have an explanation.

Iniciar sesión para comentar.

Respuestas (2)

Jan
Jan el 18 de Abr. de 2017
Editada: Jan el 18 de Abr. de 2017
No, tic/toc does not influence the if command. This is a magic idea and Matlab does not do such strange things. Otherwise you could not use Matlab for predicatble results.
The code contains another problem:
if order(Trial) < 6;
...
else order(Trial) > 5;
...
end
This is equivalent to:
...
else
order(Trial) > 5;
...
This compares the value of order(Trial) with 5, but ignores the result. Do you mean:
elseif order(Trial) > 5;
?
Seeing this problem, I'm convinced that tic/toc did not chnage anything. Try it by your own: comment the tic/toc lines and check, if this changes anything. Then fix the "elseif" problem and check it again.
  7 comentarios
M Min
M Min el 19 de Abr. de 2017
Specifically, those conditions work only for its first iteration and from second iteration, there are problems.
M Min
M Min el 19 de Abr. de 2017
Oh I am really sorry but I missed to note about
order
I edit the post. Sorry again.

Iniciar sesión para comentar.


M Min
M Min el 19 de Abr. de 2017
Finally I got what the problem is and it is not because of Tic and Toc as Rik, David, and Jan answered. I should have written
Key(Trial)
not
Key
Thank you for your answers. Appreciate!

Categorías

Más información sobre 루프와 조건문 en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!