Polynomial-to-Pade coefficient conversion

バージョン 1.1.2 (4.39 KB) 作成者: Kenneth Johnson
poly2pade converts polynomial coefficients to a Pade approximant's numerator and denominator coefficients.
ダウンロード: 16
更新 2025/6/9

ライセンスの表示

[a,b] = poly2pade(c,N);
Given series coefficents c(1:M+N+1), find coefficients a(1:M+1) and b(1:N+1) to fit the rational approximation
(a(1)+a(2)*x+...+a(M+1)*x^M)/(b(1)+b(2)*x+...+b(N+1)*x^N) = c(1)+c(2)*x+...+c(M+N+1)*x^(M+N)+Ox^(M+N+1)
This replaces padecoef.m: https://www.mathworks.com/matlabcentral/fileexchange/114835-pade-coefficients The function name is changed to avoid conflict with https://www.mathworks.com/help/matlab/ref/padecoef.html Also, the implementation has been revised to use SVD to handle ill-conditioned problems.

引用

Kenneth Johnson (2026). Polynomial-to-Pade coefficient conversion (https://jp.mathworks.com/matlabcentral/fileexchange/170746-polynomial-to-pade-coefficient-conversion), MATLAB Central File Exchange. 取得日: .

MATLAB リリースの互換性
作成: R2024a
すべてのリリースと互換性あり
プラットフォームの互換性
Windows macOS Linux
タグ タグを追加
謝辞

ヒントを得たファイル: Padé coefficients

バージョン 公開済み リリース ノート
1.1.2

bug fix in parameter scaling (do_scale branch)

1.1.1

Bug fix (uninitialized sqrt_).

1.1.0

More robust algorithms and code for coefficient scaling and denominator degree reduction.

1.0.3

Fixed handling of ill-conditioned matrix.

1.0.2

bug fix in err calculation

1.0.1

Enable parallel calculations. Apply auto-scaling. Optionally return fit error.

1.0.0