Solving trigonometric equation (decoupling)
Show older comments
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
Accepted Answer
More Answers (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)
5 Comments
KSSV
on 19 Aug 2020
The same answer syms also gives with futher simplifications.
Categories
Find more on Numeric Solvers in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!

