So, I want to create two vectors using a For. Example: Array[a, 5]; For[i = 1, i <= 5, i++, a[5] = i/5] Array[b, 5]; For[i = 1, i <= 5, i++, b[5] = i/6] And after that, I would like to plot the points {a[i], b[i]} and draw lines between them. I searched onRead more