|
ILIAS
Release_4_0_x_branch Revision 61816
|
Go to the source code of this file.
Data Structures | |
| class | LagrangeInterpolation |
| Given n points (x0,y0)...(xn-1,yn-1), the following methid computes the polynomial factors of the n-1't degree polynomial passing through the n points. More... | |
Variables | |
| $x = array(2.0, 1.0, 3.0) | |
| $y = array(3.0, 4.0, 7.0) | |
| $li = new LagrangeInterpolation | |
| $f = $li->findPolynomialFactors($x, $y) | |
| $f = $li->findPolynomialFactors($x, $y) |
Definition at line 55 of file LagrangeInterpolation2.php.
| $li = new LagrangeInterpolation |
Definition at line 54 of file LagrangeInterpolation2.php.
| $x = array(2.0, 1.0, 3.0) |
Definition at line 51 of file LagrangeInterpolation2.php.
| $y = array(3.0, 4.0, 7.0) |
Definition at line 52 of file LagrangeInterpolation2.php.