Getting the coefficients of a function in Matlab syms
조회 수: 2 (최근 30일)
이전 댓글 표시
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
댓글 수: 0
답변 (1개)
DGM
2021년 11월 15일
Try
syms a b
f = expand((a+b)^2)
c = coeffs(f) % if you want a symbolic result
c = double(c) % if you want a numeric result
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Symbolic Math Toolbox에 대해 자세히 알아보기
제품
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!