Barycentric Lagrange Interpolating Polynomials and Lebesgue Constant

버전 1.0.0.0 (2.33 KB) 작성자: Greg von Winckel
Computes lagrange interpolating polynomials and Lebesgue function/constant.
다운로드 수: 6.7K
업데이트 날짜: 2004/3/8

라이선스 보기

The first script, barylag.m, performs a barycentric lagrange interpolation on a for a set of given data. This approach follows from a paper by L. N. Trefethen (ref inside script comments), and is much faster than the previous script. Additionally, it has been vectorized to improve computation time even more. The second script, lebesgue.m is for computing the lebesgue function and constant for a set of nodes. If you want to interpolate data using barylag but are using some unusual set of nodes, use the second script to check the lebesgue constant ensure good numerical conditioning.

인용 양식

Greg von Winckel (2024). Barycentric Lagrange Interpolating Polynomials and Lebesgue Constant (https://www.mathworks.com/matlabcentral/fileexchange/4478-barycentric-lagrange-interpolating-polynomials-and-lebesgue-constant), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R12.1
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Polynomials에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0

The script has been made into two scripts, a barycentric lagrange interpolation scheme which is much faster, and a lebesgue calculator for theoretical interest.