Original content of parent
Hi,

I have a list of 2 variable $a $b $a can be from -180 up to 180 $b also can be from -180 up to 180 I want to create a 360 x 360 array and fill it with zeros then go throw the list and record the counts of the combination of $a and $b (i.e. every time I find a combination of 2 4 I will add +1 to the count)

For example a list of:

3 0 1 2 2 4 3 0 3 3 2 4 0 1 2 3 4 0 0 0 0 2 0 1 0 0 0 0 0 2 0 1 0 0 0 3 0 0 0 1 0 4 0 0 2 0 0

Could you please help me? I don’t know how to start :s

Thx

I think you mean 361 x 361. Arrays must have non-negative indexes, so just store everything 180 indexes higher.

$a[$row][$col]
becomes
$a[$row + 180][$col + 180]

In reply to Re: 2 dimensional array by ikegami
in thread 2 dimensional array by topaz

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.