i have no idea how can i plot scatter with a 2D array of this type:
a=[[x0,t0],[x1,t1],...,[xn,tn]]
the plot should be x vs t, maybe instead of doing this with a maplotlib routine be able to reshape a to obtain:
a=[[x0,x1,...,xn],[t0,t1,...,tn]]
thanks!