You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
5 lines
843 B
5 lines
843 B
1.Both are polynomial interpolation methods, but their construction methods are different. Lagrange interpolation directly constructs interpolation polynomials, while Newton interpolation simplifies calculations through difference tables.
|
|
|
|
2.Without specific data, we cannot directly compare the numerical results of the two. But in general, if there are enough data points and their distribution is reasonable, the approximation effect of the two near the interpolation points should be similar. There is not much difference between the two answers to this question
|
|
|
|
3.The advantage of Newton interpolation is that if a new data point is added, only one row needs to be added to the difference table, without the need to recalculate the entire interpolation polynomial. Lagrangian interpolation requires recalculating all basis functions. |