G'day cormanaz,

@p is a global variable visible to all the subroutines (i.e. in scope). It's used in strassen() as well as store_result() (as you pointed out).

Here's a simplified example of what you're seeing. Both subroutines have access to the global array @nums:

$ perl -Mstrict -Mwarnings -E ' say "Hello, world!"; populate_nums(); report_nums(); my @nums; sub populate_nums { push @nums => 0 .. 9 } sub report_nums { say "@nums" } ' Hello, world! 0 1 2 3 4 5 6 7 8 9

Here, only populate_nums() has access:

$ perl -Mstrict -Mwarnings -E ' say "Hello, world!"; populate_nums(); report_nums(); my @nums; sub populate_nums { push @nums => 0 .. 9 } sub report_nums { my @nums; say "@nums" } ' Hello, world!

Perhaps take a look at perlintro - Variable scoping; and follow-up with perlsub - Private Variables via my().

-- Ken


In reply to Re: MCE seemingly stray array in sample code for Strassen's algorithm by kcott
in thread MCE seemingly stray array in sample code for Strassen's algorithm by cormanaz

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.