First of all, that isn't your code -- here's what perltidy and the Perl compiler would like it to be:

#!/usr/bin/perl -w use strict; { my $a = 20; my $b = 22.5; my $c = 23; my $atob = $a - $b; my $btoc = $b - $c; my $atoc = $a - $c; my @matrixflags; if ((($atob > 1) || ($atob < -1)) && (($atoc > 1) || ($atoc < -1)) && (($btoc > 1) || ($btoc < -1))) { print OUTFILE "DIFF > 1 all three\n"; $matrixflags[$row - 4][$i] = 1; $matrixflags[$row - 3][$i] = 1; $matrixflags[$row - 2][$i] = 1; } elsif ((($atob > 1) || ($atob < -1)) && (($btoc < 1) && ($btoc > -1)) && (($atoc > 1) || ($atoc < -1))) { print OUTFILE "DIFFA > 1 $atob $atoc $btoc\n"; $matrixflags[$row - 4][$i] = 1; $matrixflags[$row - 3][$i] = 0; $matrixflags[$row - 2][$i] = 0; } elsif ((($atob > 1) || ($atob < -1)) && (($btoc > 1) || ($btoc < -1)) && (($atoc < 1) && ($atoc > -1))) { print OUTFILE "DIFFB > 1 $atob $atoc $btoc\n"; $matrixflags[$row - 4][$i] = 0; $matrixflags[$row - 3][$i] = 1; $matrixflags[$row - 2][$i] = 0; } elsif ((($atob < 1) && ($atob > -1)) && (($btoc > 1) || ($btoc < -1)) && (($atoc > 1) || ($atoc < -1))) { print OUTFILE "DIFFC > 1 $atob $atoc $btoc\n"; $matrixflags[$row - 4][$i] = 0; $matrixflags[$row - 3][$i] = 0; $matrixflags[$row - 2][$i] = 1; } #So in this example in my head the 1st elsif should be executed. #Difference $atob = 1.5 so (($atob > 1) || ($atob < -1)) is true. #Difference $btoc = 0.5 so (($btoc < 1) && ($btoc > -1)) is true. #Difference $atoc = 3 so (($atoc > 1) || ($atoc < -1)) is true. }

Secondly, even that throws errors -- neither $row or $i are defined (either using my or programmatically). Why not show us a fragment of code that at least compiles and runs, then we'll be able to help you.

Alex / talexb / Toronto

"Groklaw is the open-source mentality applied to legal research" ~ Linus Torvalds


In reply to Re: if logic OR parentheses problem by talexb
in thread if logic OR parentheses problem by Ellhar

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.