Newton's Polynomial Interpolation
                    Version 1.0.1 (4,14 KB) von  
                  Roche de Guzman
                
                
                  Interpolates a scalar or vector yp = f(xp) with given x and y = f(x) vectors and xp query
                
                  
              Newton's Polynomial Interpolation based on Taylor's Series and finite differences.
Example data:
x = [1 4 6 5]; % x vector
y = log(x); % y = f(x) vector
xp = 2 or xp = [2 3]; % x point(s) (scalar or vector) query
Use:
yp = Newtoninterp(x,y,xp)
to calculate
yp = f(x point) point(s) (scalar or vector)
Zitieren als
Roche de Guzman (2025). Newton's Polynomial Interpolation (https://de.mathworks.com/matlabcentral/fileexchange/94050-newton-s-polynomial-interpolation), MATLAB Central File Exchange. Abgerufen.
Kompatibilität der MATLAB-Version
              Erstellt mit
              R2021a
            
            
              Kompatibel mit allen Versionen
            
          Plattform-Kompatibilität
Windows macOS LinuxTags
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!Live Editor erkunden
Erstellen Sie Skripte mit Code, Ausgabe und formatiertem Text in einem einzigen ausführbaren Dokument.
| Version | Veröffentlicht | Versionshinweise | |
|---|---|---|---|
| 1.0.1 | updated the output size | ||
| 1.0.0 | 
