Unable to solve using vpasolve
5 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Jane Low
le 26 Avr 2021
Réponse apportée : Walter Roberson
le 26 Avr 2021
My equation is sin(A)-sin(1.62)*exp(-(2*pi+A-1.62)/18.85.
I write it and use 'vpasolve' to find the solutions.
Unfortunately, it doesn't give me the right ans Equation at Slide 23
How can I get the solution I want.
Code:
syms A
vpasolve(sin(A)-sin(1.62)*exp(-(2*pi+A-1.62)/18.85) == 0,A,3)
0 commentaires
Réponse acceptée
Walter Roberson
le 26 Avr 2021
syms A
eqn = sin(A)-sin(1.62)*exp(-(2*pi+A-1.62)/18.85)
vpasolve(eqn == 0,A,1)
fplot(eqn, [-10 10])
There are multiple roots.
There is a lower bound around -4.663 with a second root around -4.656. There is, however, no upper bound.
0 commentaires
Plus de réponses (0)
Voir également
Catégories
En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
