SURFIT

버전 1.0.0.0 (569 Bytes) 작성자: Vassili Pastushenko
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 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

improve summary