Lagrange interpolation polynomial fitting with MATLAB

버전 1.1.0.0 (2.32 KB) 작성자: Tamir Suliman
Lagrange interpolation polynomial fitting
다운로드 수: 595
업데이트 날짜: 2023/3/23

라이선스 보기

Lagrange interpolation polynomial fitting a set of points LAGRANG(X,Y,N,XX) where X and Y are row vector defining a set of N points uses Lagrange's method to find the N th order polynomial in X that passes through these points.
This program calculates and plots the Lagrange interpolation polynomial for a given set of data points. The Lagrange interpolation is a method to find an (n-1)th order polynomial that passes through n data points (x, y).
The input parameters for the program are:
  1. x: A row vector containing the x-coordinates of the data points.
  2. y: A row vector containing the y-coordinates of the data points.
  3. n: The number of data points.
  4. xx: A specific x-value to evaluate the interpolation polynomial.

인용 양식

Tamir Suliman (2024). Lagrange interpolation polynomial fitting with MATLAB (https://www.mathworks.com/matlabcentral/fileexchange/60686-lagrange-interpolation-polynomial-fitting-with-matlab), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R2016b
모든 릴리스와 호환
플랫폼 호환성
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!

Lagrang

버전 게시됨 릴리스 정보
1.1.0.0

* Moved the function description to the first line as a comment block.
* Added semicolons to suppress unnecessary output.
* Used 'ro' and 'b-' in the plot function to distinguish the original points

1.0.0.0

updated figure
comments section