Basically, using a bash script, I extracted two sets of values, which I want to gnuplot as my X and Y axis. I'd like to write to a file multiple lines, each of them containing a value of my X-axis and Y-axis for gnuplot practical purpose.
My X-axis string is like
0\n
0.5\n
1\n
1.5\n
2\n
2.5\n
And the Y-axis string (equal line number) :
123\n
321\n
468\n
789\n
890\n
2345\n
What I'd like to write to a file is :
0 123\n
0.5 321\n
1 468\n
1.5 789\n
2 890\n
2.5 2345\n
Thanks in advance. Writing this to a file is just an idea and definitely not compulsory, I just want to be able to gnuplot this curve !