Hello all,
i have the following problem. I want to export the manipulated data in to a txt file.
plot "example.txt" u ($1*2000: $2/10000)
how can i print in a new file the results of the expressions?
Thanks
Anto
You want to read "help table"
What do you mean sorry? Could you provide me an example
set print "output.txt"
set print
IMO I give your answer of your query.
Log in to post a comment.
Hello all,
i have the following problem. I want to export the manipulated data in to a txt file.
plot "example.txt" u ($1*2000: $2/10000)
how can i print in a new file the results of the expressions?
Thanks
Anto
You want to read "help table"
What do you mean sorry? Could you provide me an example
Set the output file
set print "output.txt"
Plot the data and redirect the results to the file
plot "example.txt" u ($1*2000: $2/10000)
Close the output file
set print
IMO I give your answer of your query.