SURFIT

Approximation of a matrix via an optimal bipolynomial of user-defined orders.
ダウンロード: 5.1K
更新 2004/11/18

ライセンスがありません

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));

引用

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

MATLAB リリースの互換性
作成: R13
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
カテゴリ
Help Center および MATLAB AnswersPolynomials についてさらに検索

Community Treasure Hunt

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

Start Hunting!
バージョン 公開済み リリース ノート
1.0.0.0

improve summary