lagrange_nd_test


lagrange_nd_test, a C++ code which calls lagrange_nd(), which is given a set of ND points X(*) in D-dimensional space, and constructs a family of ND Lagrange polynomials P(*)(X), associating polynomial P(i) with point X(i), such that, for 1 <= i <= ND,

        P(i)(X(i)) = 1
      
but, if i =/= j
        P(i)(X(j)) = 0
      

Licensing:

The information on this web page is distributed under the MIT license.

Related Data and Programs:

lagrange_nd, a C++ code which implements several multivariate Lagrange interpolation schemes developed by Tomas Sauer.

Source Code:


Last revised on 22 March 2020.