According to figure above. this picture is generated from data points in text file. My question is that how can i remove the line at any two points if graph is jumped? (In my picture see that graph is jump about on x~260)
note that my purpose is that i just want to make this graph look like piecewise function that mean line on the middle of graph should not be connected because is jumped.
In gnuplot you can split a line in several parts either when you have an invalid data value somewhere, or an empty line.
For the first situation, you could check inside the
using
statement, if the difference to the previous point is too large, and invalidate the current point. But that would also make you loose not only the connecting line, but also the first point after the jump:The test data file I used is
As you see, the points at x=5 and x=9 are lost.
Alternatively, you can pipe your data through an external tool like
awk
for the filtering. In this case you can insert an empty line when the difference between two consecutive y-values exceeds some limit:Note, that I used the
sqrt((..)**2)
only to simulate anabs
function, which awk doesn't have.