Point coordinates generation using for loop
2 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Kevin Andrews
il 3 Lug 2021
Risposto: Image Analyst
il 3 Lug 2021
Starting at
a = [0, 0]
I am trying to create a for loop to make i and j in "a" to do the following: [1,0]..[2,0]..........[9,0]
[1,1] [2,1]...............[9,1]
[1,2]..[2,2]............[9,2] and so on
0 Commenti
Risposta accettata
Image Analyst
il 3 Lug 2021
OK, so did you do it? Do you have any questions? I imagine you came up with something like this:
for j = 0 : 2
for k = 1 : 9
a = [k, j]
end
end
0 Commenti
Più risposte (0)
Vedere anche
Categorie
Scopri di più su Loops and Conditional Statements in Help Center e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!