I have several signals, where s1, s2 to sn, are vectors of size n, I would like to join them in an array to look like this:
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 did I travel?