I will try to be as clear as possible. Imagine you have a for cycle, that results in a vector. Now you would like to rerun the for cycle, and thus create another vector with different values in it. The problem is, you would like to keep the first one while getting a new one. Basically you would want series of vectors like vector1 from the first run, vector2 from the second run... Is it possible to write a cycle that would allow this? Also, would it be possible to create a matrix that combines these vectors in a way that every single vector is stored as a row?
Thank you in advance!