Getting the coefficients of a function in Matlab syms

2 ビュー (過去 30 日間)
Teoman Selcuk
Teoman Selcuk 2021 年 11 月 15 日
回答済み: DGM 2021 年 11 月 15 日
How would I be able to get the Coefficients of the f function down below and get the Expected Output?
Code:
syms a b
f = expand((a+b)^2)
Expected Output:
1 2 1

回答 (1 件)

DGM
DGM 2021 年 11 月 15 日
Try
syms a b
f = expand((a+b)^2)
f = 
c = coeffs(f) % if you want a symbolic result
c = 
c = double(c) % if you want a numeric result
c = 1×3
1 2 1

カテゴリ

Help Center および File ExchangeConversion Between Symbolic and Numeric についてさらに検索

製品

Community Treasure Hunt

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

Start Hunting!

Translated by