I have a matrix or data table as below:
which looks like
time node1 node2 node3
1 100 200 300
2 101 245 329
3 90 245 350
4 129 320 290
5 79 270 320
I want to read this matrix as:
In first run – 1,101,245,290 and assign to some vector
In second run – 2,90,320,320 and assign to some vector.
In third run—3,129,270 and assign to some vector.
So that in later stage I can use this vector for mathematical calculation.
process is similar to pipeline where every stage gives output per clock tick.