Dear Perl Monks
I am completely stumped by the following bug, I'm trying to return values from this subroutine, but inside the innermost for loop and outside of the triple loop, the @Azcord, @Axcord and @Aycord arrays are empty if you call it by index e.g
$Axcord[$counter] but if you call it by array e.g. @Axcord the entries will appear, which is no good for manipulation and which I can't pass back to the main programme?! does anyone have any idea of whats going on here?
Many Thanks in advance! much appreciated!
Dan
sub coordinatesorter {
local (*Axcoord, *Aycoord, *Azcoord, *Bxcoord, *Bycoord, *Bzcoord, *re
+s_to_atom, *natres, $nseg, *beginning, *ending) = @_;
my @Axcord;
my @Aycord;
my @Azcord;
my @Bxcord;
my @Bycord;
my @Bzcord;
my $interdomaincounter=1;
my $counter = 0;
for ($iseg = 1; $iseg <= $nseg; ++$iseg){
for ($ires = $beginning[$iseg]; $ires <= $ending[$iseg]; ++$ires) {
for ($iat = 1; $iat <= $natres[$ires]; ++$iat) {
$Axcord[$counter] = $Axcoord[$res_to_atom[$ires][$iat]];
$Aycord[$counter] = $Aycoord[$res_to_atom[$ires][$iat]];
$Azcord[$counter] = $Azcoord[$res_to_atom[$ires][$iat]];
$Bxcord[$counter] = $Bxcoord[$res_to_atom[$ires][$iat]];
$Bycord[$counter] = $Bycoord[$res_to_atom[$ires][$iat]];
$Bzcord[$counter] = $Bzcoord[$res_to_atom[$ires][$iat]];
$counter++;
}
}
}
return (\@Axcord, \@Aycord, \@Azcord, \@Bxcord, \@Bycord, \@Bzcord);
}
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.