Boucles Flashcards

1
Q

for…end

A

commande la répétition d’une manœuvre. Si u est un vecteur :
for k=u
//instructions
end
la boucle for va ordonner la répétition de l’instruction pour chaque composante de u

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

while…end

A

commande la répétition d’une manœuvre tant qu’une condition ne se produit pas

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

syntaxe while

A

while //condition
//instruction
end

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

if…then…else…end

A

commande une manœuvre si une condition est respectée ou une autre manœuvre si elle n’est pas respectée. Si l’on veut que Scilab ne fasse rien si la condition n’est pas respectée, on enlève else

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

syntaxe if…then…else…end

A
if //condition // then
  //instruction
  else
  //instruction
end
How well did you know this?
1
Not at all
2
3
4
5
Perfectly