How to solve this equation in matlab?

4 vues (au cours des 30 derniers jours)
Stanley Cheng
Stanley Cheng le 24 Août 2015
Commenté : Muhammad Uzair le 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

Réponse acceptée

Torsten
Torsten le 24 Août 2015
syms theta a b c
eqn = a*sin(theta)+b*cos(theta) == c;
soltheta = solve(eqn,theta)
Best wishes
Torsten.
  1 commentaire
Muhammad Uzair
Muhammad Uzair le 29 Nov 2022
great! Helped a lot

Connectez-vous pour commenter.

Plus de réponses (0)

Catégories

En savoir plus sur Programming dans Help Center et File Exchange

Produits

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by