Hi all,
Could you please help me understand this error :s
>Scalar value @Matrix[$a] better written as $Matrix[$a] at ./test.pl l
+ine 22.
syntax error at ./test.pl line 22, near "]["
Execution of ./test.pl aborted due to compilation errors.
------------------------------
from this code
use strict;
#-- Define in/out files
my $inf = "test.txt" ;
#-- variables and handles
my $line; my $a; my $b; my @result;
my @Matrix = ( [(0) x 361], [(0) x 361]);
#--Open the input and output files
open (IN, "$inf") || die "Can't read $inf";
while ($line = <IN>)
{
@result = split(/\s+/, $line);
$a = $result[0];
$a = int($phi);
$b = $result[1];
$b = int($psi);
@Matrix[($a+180)][($b+180)] += 1;
}
In reply to perl error
by topaz
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.