Solving trigonometric equation (decoupling)
显示 更早的评论
I wanted to solve ϕ as a function of other variables

Is is possible to decouple this equation ?
Even matlab symbolic gave me some kind of log function. I don't understand what that mean actually.
any help is apperciated
采纳的回答
更多回答(1 个)
Hand calculation is also possible.....
syms phi psi theta
eqn = cos(psi)*sin(phi)+cos(theta)*sin(phi)-cos(phi)*sin(psi)*sin(theta)==0
s = solve(eqn,psi)
类别
在 帮助中心 和 File Exchange 中查找有关 Numeric Solvers 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!


