In this case, it would certainly serve you well to have posted a simplified version of your code - you could certainly remove 5 elements from your call list and have the same structure.

I cannot replicate your issue. Perhaps if you included a wrapping script that fed your subroutine some sample data and included information on how you were attempting to print out the values from your arrays. Your naming scheme is not great either - it took me a minute to figure out Axcoord and Axcord, etc. were different. And you probably shouldn't be using typeglobs for array passing. The following code should replicate your code's behavior. Note I've swapped to Foreach Loops to prevent syntax traps and all the code conforms to the strict/warnings pragmas. I'd also suggest replacing three independent arrays by hashes of arrays to reduce the number of variables.

use strict; use warnings; sub coordinatesorter { my ($Ax_ref, $Ay_ref, $Az_ref, $Bx_ref, $By_ref, $Bz_ref, $res_to_atom, $natres, $nseg, $beginning, $ending ) = @_ +; my $interdomaincounter = 1; my $counter = 0; my (@Axcord, @Aycord, @Azcord, @Bxcord, @Bycord, @Bzcord); foreach my $iseg (1 .. $nseg) { foreach my $ires ($beginning->[$iseg] .. $ending->[$iseg]) { foreach my $iat (1 .. $natres->[$ires]) { $Axcord[$counter] = $Ax_ref->[ $res_to_atom->[$ires][$ +iat] ]; $Aycord[$counter] = $Ay_ref->[ $res_to_atom->[$ires][$ +iat] ]; $Azcord[$counter] = $Az_ref->[ $res_to_atom->[$ires][$ +iat] ]; $Bxcord[$counter] = $Bx_ref->[ $res_to_atom->[$ires][$ +iat] ]; $Bycord[$counter] = $By_ref->[ $res_to_atom->[$ires][$ +iat] ]; $Bzcord[$counter] = $Bz_ref->[ $res_to_atom->[$ires][$ +iat] ]; $counter++; } } } return (\@Axcord, \@Aycord, \@Azcord, \@Bxcord, \@Bycord, \@Bzcord +); }

If this code still doesn't perform to spec, please provide some sample data.


In reply to Re: Can call array but not index of an array in subroutine?! by kennethk
in thread Can call array but not index of an array in subroutine?! by fraizerangus

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.