I am new to GNUPLOT and, I have encountered a problem which I do not know how to deal with. Any help from your side will be appreciated. The problem is:
I have two files, say "A.dat" and "B. dat". Both are multidimensional array data. To be exact,
A.dat has 1000 rows and 100 columns. let row index be i from 1 to 1000, column index be k from 1 to 100.
B.dat has 1000 rows and 100 columns. let row index be i from 1 to 1000, column index be k from 1 to 100
I want to have a two-dimensional plot, which has a total of k curves in it, 100 curves!
So, a given k-curve is drawn the coordinate axes, whose X coordinates are from A data and ,Y coordinates are from B data respectively.
So a k= 50 curve should be formed, whose x values are the respective 50th column values of A.dat and, y values the respective 50th column values of B.dat. Also since for a total of 100 curves, I will like to have some sort of colour scale, like, k=1 be violet, k =100 be red.
Any idea on how to implement this?