BIPVAL

版本 1.0.0.0 (652 字节) 作者: Vassili Pastushenko
Produces a matrix of user-defined size, as bipolynomial values.
2.4K 次下载
更新时间 2004/11/22

无许可证

POLYFIT can fit a polynomial of given ORDer to vectorial data, using as independent variable data index, rescaled between -1 and 1. Similarly, BIPFIT fits a bipolynomial of given orders (a matrix) to matrix data.

POLYVAL can calculate the VALues of a POLYnomial on an equidistant abscissa x, scaled between -1 and 1. Then only length(x) counts.

Similarly, BIPVAL calculates the VALues of BIPolynomial as a matrix of user defined size. For smoothing perpouses, same size can be used as original data matrix, parent to the BIPolynomial:

BIP=randn(3,4);
BIP = 3*4 matrix (bipolynomial up to Y^2, X^3)
DAT=bipval(BIP,[100,150]);

Check:
bip=bipfit(DAT,2:3);

BIP-bip

Based on: POLYVAC

See also:
BIPFIT, SURFIT

引用格式

Vassili Pastushenko (2024). BIPVAL (https://www.mathworks.com/matlabcentral/fileexchange/6255-bipval), 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

Still improving summary, more logical consistency and standardization for complex matrices (.')