« Return to Thread: gnuplot script aide

gnuplot script aide

by maolivar :: Rate this Message:

Reply to Author | View in Thread



HI everybody,

i try to doia script in order to plot all the data files that i have in a folder, i have an idea but it doesn't works i followed this article to  do it
http://article.gmane.org/gmane.comp.graphics.gnuplot.user/2245/match=plot+arguments

#!/bin/bash
for fname in *.txt ; do  
gnuplot << \EOF
set term png color
set out "$fname"
set autoscale
unset label
set title "COMMUNICATIONS"
plot '$fname. using :5  w impulses
pause -1
EOF
done

this is the errro message that i have
line 0: no data point found in specified file

please does anybody help me

thanks


_________________________________________________________________
Explore the seven wonders of the world
http://search.msn.com/results.aspx?q=7+wonders+world&mkt=en-US&form=QBRE
-------------------------------------------------------------------------
This SF.net email is sponsored by: Microsoft
Defy all challenges. Microsoft(R) Visual Studio 2008.
http://clk.atdmt.com/MRT/go/vse0120000070mrt/direct/01/
_______________________________________________
Gnuplot-info mailing list
Gnuplot-info@...
https://lists.sourceforge.net/lists/listinfo/gnuplot-info

 « Return to Thread: gnuplot script aide