|
From: Thomas S. <t.s...@fz...> - 2010-11-23 22:11:28
|
mbm329 <mbm329 <at> gmail.com> writes: > Unfortunately, it still did not plot properly. However, it is much > closer than before; at least I get three lines now :) > > With the change you suggested, I have 2 issues. > The first item, "5000-1FE1-5000-BDDC", plots correctly all the way > through, (1) but the second and third lines (strings ending with D and > E) plot starting at 0. > ... if forgot to store the x-value too. this plot command should work: x1=x2=x3=NaN y1=y2=y3=NaN plot './eva.dat1' using \ (strstrt(stringcolumn(4),"5000-1FE1-5000-BDDC") ?(x1=timecolumn(1),x1) : x1):\ (strstrt(stringcolumn(4),"5000-1FE1-5000-BDDC") ?(y1=$2+$3,y1) : y1) \ with linespoints title "ARRAY01/B/1", \ '' using \ (strstrt(stringcolumn(4),"5000-1FE1-5000-BDDD") ?(x2=timecolumn(1),x2) : x2):\ (strstrt(stringcolumn(4),"5000-1FE1-5000-BDDD") ?(y2=$2+$3,y2) : y2) \ with linespoints title "ARRAY01/B/2", \ '' using \ (strstrt(stringcolumn(4),"5000-1FE1-5000-BDDE") ?(x3=timecolumn(1),x3) : x3):\ (strstrt(stringcolumn(4),"5000-1FE1-5000-BDDE") ?(y3=$2+$3,y3) : y3) \ with linespoints title "ARRAY01/B/3" |