Borrar filtros
Borrar filtros

Matlab code problem in a S-function

1 visualización (últimos 30 días)
alessandro
alessandro el 29 de Jun. de 2014
Comentada: Image Analyst el 29 de Jun. de 2014
Hi, I have this loop in my code:
global counter
T=200
if counter>=T
counter=0
.
.
else counter=counter+1
end
This code worked fine yesterday and now no, but I have not changed anything. Until yesterday, the answer was
counter =
1
.
.
counter =
200
and now:
counter =
[]
.
.
counter =
[]
Please help me

Respuesta aceptada

Image Analyst
Image Analyst el 29 de Jun. de 2014
When you enter the routine counter is null for some reason. Probably some other part of your code did it. Change the line
if counter>=T
to this
if isempty(counter) || counter >= T
That should make it not null anymore.
  2 comentarios
alessandro
alessandro el 29 de Jun. de 2014
perfect, it works. Thank you
Image Analyst
Image Analyst el 29 de Jun. de 2014
Can you mark the Answer as "Accepted" then? Thanks.

Iniciar sesión para comentar.

Más respuestas (0)

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