how to solve using "solve" command ?
信息
此问题已关闭。 请重新打开它进行编辑或回答。
显示 更早的评论
how to solve the following equation for k1 and k2 using "solve" command ?
(k1+2k2)sinx+(2k1-k2)cosx=2sinx
syms x k1 k2
solve ( (k1+2*k2)*sinx + (2*k1-k2)*cosx=2*sinx), [k1, k2])
returns a sym object which I can not convert to numerical value.
0 个评论
回答(0 个)
此问题已关闭。
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!