how can I plot single column binary file with gnuplot?
This is the gnuplot command I am using:
plot "file.bin" binary format="%float" u ($0+1):1 every ::0::999
but I get all the points along the vertical line x = 0.
I am creatiing the binary file in a C code I have:
write(fdesc, bin_data, tot_size * sizeof(double));
Thanks.
plot "file.bin" binaryto see if that works?