r0adawg has asked for the wisdom of the Perl Monks concerning the following question:
Hello, I have 2 data sets 1 in each file 'temp1.txt' and 'temp2.txt'. single line only. these are comma delimited. my x values are 1 .. 2000
if I hard code the y values into the below array of arrays, it produces a good graph using gd graph. if I reference the file... i get no output using gd graph
how do I go about putting the contents from said file into the array?
thanksopen($temp_line1, '<' ,'c:\video\temp1.txt') or die("Cannot open temp1 +.txt\n"); open($temp_line2, '<', 'c:\video\temp2.txt') or die("Cannot open temp2 +.txt\n"); my @data = ([ 0 .. 2000 ], # x Values [ $temp_line1 ], # y Values [ $temp_line2 ]); # y Values close $temp_line1; close $temp_line2; __DATA___ temp1.txt '16, 17, 19, 22, 21, 22, 25, 28, 31, 35, 39,....' temp2.txt '17, 19, 20, 22, 25, 27, 29, 33, 36, 40, 43,....'
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: array of arrays with data from files
by roboticus (Chancellor) on Dec 24, 2010 at 01:37 UTC | |
|
Re: array of arrays with data from files
by ahmad (Hermit) on Dec 24, 2010 at 01:48 UTC | |
by r0adawg (Beadle) on Dec 27, 2010 at 18:03 UTC | |
|
Re: array of arrays with data from files
by Anonymous Monk on Dec 24, 2010 at 01:31 UTC |