Good night people,
I have a question regarding the optimization of the following loop:
for i=1:length(PV)
if i>3
if NL(i-1)<=100
if NL(i-2)<=100
if NL(i-3)<=100
u(i)=1;
else
u(i)=0;
end
end
end
end
end
I would like to reduce the if statements.
Thanks for your time,

 Respuesta aceptada

Matt J
Matt J el 8 de Nov. de 2020

0 votos

t=double(NL(:).'<=100);
u=(movsum(t,[3,0])-t)>=3;

1 comentario

Ricardo López
Ricardo López el 9 de Nov. de 2020
What should I do if I want to add more conditions, like in my example? And stored them in a u=zero(1,length(PV))
Thank you for your time

Iniciar sesión para comentar.

Más respuestas (1)

Matt J
Matt J el 8 de Nov. de 2020
Editada: Matt J el 8 de Nov. de 2020

0 votos

u=[0,0,0, conv(double(NL(:).'<=100),[1,1,1],'valid')>=3];

Categorías

Más información sobre Loops and Conditional Statements en Centro de ayuda y File Exchange.

Etiquetas

Preguntada:

el 8 de Nov. de 2020

Comentada:

el 9 de Nov. de 2020

Community Treasure Hunt

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

Start Hunting!

Translated by