This question is sufficiently answered, I'm just an idiot that forgets to use references

I wrote a little module that I could use to approximate lagrange polynomials in Perl.

The only problem is, it doesn't work. I consistantly get a single value whenever I feed some test function into Lagrange's maw.

Any help would be appreciated, code below:

#! /usr/bin/perl use strict; use warnings; sub lagrange { #x is an array of x values, f is an array of function values, LC are t +he reduced lagrange coefficients. my @x = shift; my @f = shift; my ($i, $j); my @LC; my $point = @x; my $den = 1; for ($i=0; $i < $point; $i++) { for ($j = 0; $j < $point; $j++) { unless ($j == $i) { $den *= ($x[$i] - $x[$j]); } $LC[$i] = $f[$i]/$den; $den = 1; } } return \@LC; } sub lageval { my @x = shift; my @LC = shift; my $x0 = shift; my $point = @x; my @mult; my $sum = 0; my ($i, $j); for($i=0; $i<$point; $i++) { $mult[$i] = 1; } for ($i=0; $i<$point;$i++) { for ($j = 0; $j<$point; $j++) { unless ($j == $i) { $mult[$i] *= $x0 - $x[$j]; } } $sum += $mult[$i] * $LC[$i]; } return $sum; } 1;

In reply to Lagrange Polynomials in Perl by Mascasc

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.