Thank you for your help! The Perl documents and mini-programs were great.
Cheers,
Sonal
On Jan 24, 2008 9:25 PM, Sonal Singhal <[EMAIL PROTECTED]> wrote:
> So, what I want to do is go through an existing array and break the array
> into mini-arrays at any certain points (where the diff. in two b
On Jan 25, 12:25 am, [EMAIL PROTECTED] (Sonal Singhal) wrote:
> So, what I want to do is go through an existing array and break the array
> into mini-arrays at any certain points (where the diff. in two bordering
> values are greater than 2000). I programmed it as a recursive function, but
> I nee
Sonal Singhal wrote:
>
So, what I want to do is go through an existing array and break the array
into mini-arrays at any certain points (where the diff. in two bordering
values are greater than 2000). I programmed it as a recursive function, but
I need to store all these "mini-arrays" and be abl
So, what I want to do is go through an existing array and break the array
into mini-arrays at any certain points (where the diff. in two bordering
values are greater than 2000). I programmed it as a recursive function, but
I need to store all these "mini-arrays" and be able to sort them easily by
From: "Sonal Singhal" <[EMAIL PROTECTED]>
> Simple question, I hope... I am looping through a set of commands, and each
> time, I want to create a unique array with a tag representing the loop
> number.
>
> for (my $j = 1; $j < $#start_points; $j++){
> if ( abs($start_points[0] - $start_
On Jan 23, 2008 10:27 AM, Sonal Singhal <[EMAIL PROTECTED]> wrote:
> I know I can do an array of arrays but that doesn't work well for the rest
> of my program.
You should really fix the rest of your program. There is more than one
way to do it, but all the good ways use Perl as it's meant to be
Simple question, I hope... I am looping through a set of commands, and each
time, I want to create a unique array with a tag representing the loop
number.
for (my $j = 1; $j < $#start_points; $j++){
if ( abs($start_points[0] - $start_points[$j]) > 1999) {
my @{start_points."$n"