what is happening here?
Afficher commentaires plus anciens
for j = 1:6 - 1
if sign(i(j,1)) * sign(i(j+1,1)) == -1
m = m + 1;
end
end
in this code what does "1:6-1" means?
Réponse acceptée
Plus de réponses (1)
Image Analyst
le 22 Oct 2019
Try it in the command window:
>> 1:6-1
ans =
1 2 3 4 5
First it does (6-1) to create a scalar 5, then it goes from 1 to (6-1) or 1 to 5 to give [1,2,3,4,5].
Catégories
En savoir plus sur Data Types dans Centre d'aide et File Exchange
Produits
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!