SURFIT

Approximation of a matrix via an optimal bipolynomial of user-defined orders.
5,1K download
Aggiornato 18 nov 2004

Nessuna licenza

You have a data matrix D. You want to find its approximation, matrix SUR same size as D, by a bipolynomial P(X,Y), having orders ORDHOR in horizontal and ORDVER in vertical directions. Bipolynomial is a matrix of coefficients before bipolynomial terms X^(m)*Y(n),
n<=ORDVER
m<=ORDHOR

Solution:

SUR = surfit(D,ORDVER,ORDHOR);

ORDVER: default 1
ORDHOR: default ORDVER

compare the result with:

BIP=bipfit(D,[ORDVER,ORDHOR])
SUR=bipval(BIP,size(D));

Cita come

Vassili Pastushenko (2024). SURFIT (https://www.mathworks.com/matlabcentral/fileexchange/6244-surfit), MATLAB Central File Exchange. Recuperato .

Compatibilità della release di MATLAB
Creato con R13
Compatibile con qualsiasi release
Compatibilità della piattaforma
Windows macOS Linux
Categorie
Scopri di più su Polynomials in Help Center e MATLAB Answers

Community Treasure Hunt

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

Start Hunting!
Versione Pubblicato Note della release
1.0.0.0

improve summary