|
From: mbm329 <mb...@gm...> - 2010-11-30 23:53:50
|
Thanks much. That solved the issue for me. Mike On Tue, Nov 23, 2010 at 5:11 PM, Thomas Sefzick <t.s...@fz...> wrote: > 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" > > > > > > ------------------------------------------------------------------------------ > Increase Visibility of Your 3D Game App & Earn a Chance To Win $500! > Tap into the largest installed PC base & get more eyes on your game by > optimizing for Intel(R) Graphics Technology. Get started today with the > Intel(R) Software Partner Program. Five $500 cash prizes are up for grabs. > http://p.sf.net/sfu/intelisp-dev2dev > _______________________________________________ > gnuplot-info mailing list > gnu...@li... > https://lists.sourceforge.net/lists/listinfo/gnuplot-info > |