I need some help.
I have two arrays (x_val[] and y_val[]) of data with the x and y values of some points in the plane, so that (x,y) is a point in the 2D space. I write the data following the next format:
Then I use GNUPLOT for drawing all the points:
plot 'data_file.dat' u 1:2 w points
The problem is that the size of the file is almost 1Gb and I need to generate almost 500 files. So I thought that it could be better to write the data in binary format and then plot it, but I don't know how to do either.
I would like to do it without changing the arrays x_val[] and y_val[] please.
Thank you.