Hello Monks, I’ve done some perl in the past (wish I’d seen this site then) but it has been a while. I have some if logic/parentheses not working. The code is meant to identify outliers in triplicate data values. Here is some of it.
$a= 20; $b= 22.5; $c= 23 $atob = $a - $b; $btoc = $b - $c; $atoc = $a - $c; if (((atob > 1 ) || (atob < -1)) && ((atoc > 1) || (atoc < -1)) && ((b +toc > 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.
During debugging the values seem to make sense but I’m not executing the any of the statements. Any ideas? Thanks Elliott

In reply to 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.