Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~912 People Reached
Favorite Forums
Favorite Tags
Member Avatar for uan_Blr

Hi PERL-fans, I have a problem with an array while coding a histogram: The data is in an array [code=perl]@data[/code] I initialise my histogram array like: [code=perl]@histo=();[/code] Then, I loop over the datapoints and at each point compute in which bin that point would be: [code=perl] for(my $i=0; $i<scalar(@data); $i++){ …

Member Avatar for uan_Blr
0
176
Member Avatar for uan_Blr

Hi there, could you please help me with the following script: [CODE]my $gnuplot = "/usr/local/bin/gnuplot"; my $sample = "foo"; open(GNUPLOT, "|$gnuplot"); print GNUPLOT <<gnuplot_Commands_Done; set grid set title "$sample" plot "$sample" u 1:6 w lines pause -1 gnuplot_Commands_Done close(GNUPLOT);[/CODE] I would like to be able to call gnuplot in a …

0
74
Member Avatar for uan_Blr

Hi everyone! I have just signed in at daniweb, I hope you can help me. I am new to perl and have the following problem to solve: I have loads of files with 16 columns full of numbers. I need to 1. take column 6 and substract column 10, store …

Member Avatar for uan_Blr
0
510
Member Avatar for SNN

Hi, I am new to Perl and I appreciate if someone can help me. I have a tab delimited file that contains 100 columns and 300 rows. The first row is the ID. I need first to read the file into a matrix or a table and delete the columns …

Member Avatar for KevinADC
0
152