Vandermonde matrix, vander() function extension

Adds functionality to the original MATLAB vander() function.

您现在正在关注此提交

Uses the more common definition of the Vandermonde matrix with power zero to the left, and adds the ability to create non-square matrices for more flexibility.

V=vander2(v,k)=[v.^0 v.^1 ... v.^k];
where length(v)=n and dim(V)=[n, k].

Note that replacing the original vander() function can cause other functions to fail.

引用格式

Marcus Björk (2026). Vandermonde matrix, vander() function extension (https://ww2.mathworks.cn/matlabcentral/fileexchange/43968-vandermonde-matrix-vander-function-extension), MATLAB Central File Exchange. 检索时间: .

类别

Help CenterMATLAB Answers 中查找有关 Filter Banks 的更多信息

一般信息

MATLAB 版本兼容性

  • 兼容任何版本

平台兼容性

  • Windows
  • macOS
  • Linux
版本 已发布 发行说明 Action
1.1.0.0

Changed function name to vander2 not to replace original (since the output is changed).
Replaced for-loop by bsxfun.

1.0.0.0