How to solve this equation in matlab?
3 visualizzazioni (ultimi 30 giorni)
Mostra commenti meno recenti
Stanley Cheng
il 24 Ago 2015
Commentato: Muhammad Uzair
il 29 Nov 2022
Can anyone teach me how to solve this equation in Matlab? Thanks so much!
syms a b c theta
a*sin(theta) + b*cos(theta) = c
0 Commenti
Risposta accettata
Torsten
il 24 Ago 2015
syms theta a b c
eqn = a*sin(theta)+b*cos(theta) == c;
soltheta = solve(eqn,theta)
Best wishes
Torsten.
Più risposte (0)
Vedere anche
Prodotti
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!