I have a file with strings
1.429520882432E12 3432.0
1.429520882914E12 1573.0
...
first col is epoch timestamp(13 digit), how could I get time from it? I couldnt find format for 'double' digits
I export it from javaplot program and plot 'file' using ($1*1000000000000):2 doesn't fit, but if I can do it with javaplot, it's great!
Why do you multiplicate the values by 100000000... ? The values are already given as floating point number in milliseconds. You have to divide them by 1000. Doing this, I get this output, which perfectly fits your 432 and 914 milliseconds:
Here is the code: