How to calculate the coefficients of non-polynomial terms
조회 수: 3 (최근 30일)
이전 댓글 표시
I am trying to find the coefficients of non-polynomial terms
For example
syms x
a=-9*cos(x)*4+x*9+4*sin(x)
I want to find the coefficients of sin(x) and cos(x).
When using coeffs its not working
Thanks
댓글 수: 0
채택된 답변
madhan ravi
2018년 9월 8일
편집: madhan ravi
2018년 9월 8일
syms x
a=-9*cos(x)*4+x*9+4*sin(x)
[C,T] = coeffs(a) %edited after John’s comment.
It’s working for me
댓글 수: 11
madhan ravi
2018년 9월 8일
편집: madhan ravi
2018년 9월 8일
if you find it useful please accept the answer, thank you @John
추가 답변 (0개)
참고 항목
카테고리
Help Center 및 File Exchange에서 Assumptions에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!