the_eraser
the_eraser

Reputation: 425

How to print blank lines in Gnuplot

This may be naive: how do I print a blank line from a gnuplot script to a txt file? I mean without any spaces, just a return.

set print "filename" append # I print things in a loop and append them
print a
print b
print HowToPrintBlankLines?

Thanks, Luca

Upvotes: 1

Views: 341

Answers (1)

andyras
andyras

Reputation: 15910

To print a blank line in gnuplot you can just do

print ""

Upvotes: 1

Related Questions