Azzera filtri
Azzera filtri

i want to use goto to jump from third line to eighth line.

1 visualizzazione (ultimi 30 giorni)
if(i~=4)
if (dx/yg(i))<tand(sia)
goto X
else
P(i-1)=0
end
else
X
end

Risposte (1)

dpb
dpb il 22 Dic 2020
Modificato: dpb il 22 Dic 2020
if (i==4)|((dx/yg(i))<tand(sia))
X
else
P(i-1)=0
end
or
if (i~=4)&((dx/yg(i))>=tand(sia))
P(i-1)=0
else
X
end
  1 Commento
dpb
dpb il 22 Dic 2020
BTW, if had rest of loop over i, it's quite possible/probable(?) could eliminate it and vectorize the expression.

Accedi per commentare.

Categorie

Scopri di più su Loops and Conditional Statements in Help Center e File Exchange

Tag

Community Treasure Hunt

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

Start Hunting!

Translated by