I have a row vector showing x coordinates
x=[1,5,7,3] and I have a matrix
y=[[1,2,3,4],[2,3,1,4],[1,2,2,1],[2,3,1,1]] whose rows represent the scatter of a variable at the corresponding x coordinate.
I want to make a scatter plot of this, i.e. for each x, there are 4 different y values, which I want to plot. Is there a way?
