1
I have several signals, where S1, s2 until Sn, are vectors of size n, I would like to unite them in a matrix to stay as follows:
matriz = ( [s1]
[s2]
...
[sn] )
So that I can access an element at any point, for example [4][433], the value of row position 4 and column 433.
I tried approaches with np.vstack(), but np.vstack() really does the proposed? Or I traveled?
This will be: https://ideone.com/ynwhzM
– Miguel