Point coordinates generation using for loop
2 views (last 30 days)
Show older comments
Kevin Andrews
on 3 Jul 2021
Answered: Image Analyst
on 3 Jul 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 Comments
Accepted Answer
Image Analyst
on 3 Jul 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 Comments
More Answers (0)
See Also
Categories
Find more on Loops and Conditional Statements in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!