Question: Plotting data from arrays

I was hoping to get some help with a problem I've been facing for the past couple of days. Basically, I've got a quadratic which I've solved for, and found 2 complex roots, say x1 and x2, for a range of values, y. This data has since been put into an array, showing both the real and imaginary parts of the roots. The 2 roots obtained for each value of y are just the positive and negative of each other. I've then taken the data from the array, and since I'm only interested in the imaginary parts of x, I've taken the data from the array and using the seq command, obtained a list of the points x1, x2 and y I want to plot. Now, I want to plot (x1,y) and (x2,y) on the same plot, but I have no idea how to firstly combine the outputs of the 3 seq statements into two lists of actual co-ordinates, and then secondly, how to plot these. Any help would be greatly appreciated. Thanks. DC
Please Wait...