How to calculate the coefficients of non-polynomial terms
5 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
T S Singh
el 8 de Sept. de 2018
Editada: madhan ravi
el 8 de Sept. de 2018
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 comentarios
Respuesta aceptada
madhan ravi
el 8 de Sept. de 2018
Editada: madhan ravi
el 8 de Sept. de 2018
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 comentarios
madhan ravi
el 8 de Sept. de 2018
Editada: madhan ravi
el 8 de Sept. de 2018
if you find it useful please accept the answer, thank you @John
Más respuestas (0)
Ver también
Categorías
Más información sobre Assumptions en Help Center y File Exchange.
Productos
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!