Salut;
j'ai l'erreur suivant,
comment je dois le corrigerWarning: Integer operands are required for colon operator when used as index.
MERCI
Salut;
j'ai l'erreur suivant,
comment je dois le corrigerWarning: Integer operands are required for colon operator when used as index.
MERCI
Ce n'est pas une erreur mais un warning.
Voir la
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6 >> a(1.5:2) = 3 Warning: Integer operands are required for colon operator when used as index a = 0 3: Subscript indices must either be real positive integers or logicals.
Partager