|
From: Daniel J S. <dan...@ie...> - 2006-08-07 05:35:44
|
Dmitri A. Sergatskov wrote:
>
> Here is the data file ("t3.dat"):
> # -- begin
> 0 2
> 2 0
> NaN NaN
> 4 2
> 2 4
> # -- end
>
> with gnuplot 4.1 (today's CVS snapshot):
> gnuplot> plot "t3.dat"
> ^
> Bad data on line 3
Try
plot "t3.dat" using 1:2
without setting data file missing. That appears to work the same. Not sure why.
Dan
|