|
From: Petr M. <mi...@ph...> - 2005-10-22 22:03:09
|
I think I've tracked the bug down; it seems to be in datafile.c: df_readbinary(double v[], int max). Use this script: set grid set ticslevel 0.3 set auto fix set xlabel "xxxx" set ylabel "yyyy" splot 'a.dat' matrix u 1:2:3 set table replot with this a.dat: 11 12 13 14 15 21 22 23 24 25 ==> it produces: #IsoCurve 0, 5 points #x y z type 0 1 21 i 1 1 22 i 2 1 23 i 3 1 0 i 4 1 0 i #IsoCurve 1, 5 points #x y z type 0 0 11 i 1 0 12 i 2 0 13 i 3 0 0 i 4 0 0 i Thus, it reads only 3 columns, not the full line. It looks that df_readbinary() is used also for reading the ascii matrix file. However, I couldn't found where is the problem. Who else can find the problem? --- PM |