I suspect you need to start $toggle reversed for odd values
Indeed. Using my $toggle = $P & 1 ? 1 : -1;, the output makes much more sense:
you don't show most of the code so I didn't go much further in looking
The entire code looks like this:
#! perl -slw
use strict;
sub PTn {
my @row;
for( 1 .. shift ) {
push @row, 1;
$row [$_] += $row [$_ - 1] for reverse 1 .. @row - 2;
}
return @row;
}
sub expN {
my( $P, $N, $X ) = @_;
my $xDIVn = $X / $N;
my @coefs = PTn( $P+1 );
my $rv = 0;
my $toggle = $P & 1 ? 1 : -1;
for my $p ( reverse 1 .. $P ) {
$rv += $toggle * $coefs[ $p ] * $N / $p * exp( -$p * $xDIVn );
$toggle *= -1;
}
return $rv + $X;
}
our $H //= 10;
our $B //= 32;
print "Using N x 2**$B vectors:";
for my $inserts ( map{ 2**$_*3/4, 2**$_ } 4 .. $B ) {
printf "%10d : ", $inserts;
for my $h ( 1 .. $H ) {
printf "%6d ", expN( $h, 2**$B, $inserts ) - expN( $h, 2**$B,
+0 );
}
print '';
}
With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
"Science is about questioning the status quo. Questioning authority".
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.