Solve equations stored in variables
3 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
Rishabh Agrawal
le 27 Déc 2020
Modifié(e) : KALYAN ACHARJYA
le 27 Déc 2020
I have a code in which after the processing a numeric expression is stored in a variable 'Final'
and the numeric expression is (3206987*2^(3/10)*3^(29/40)*5^(23/40))/12000000
but when I do, disp(Final) it shows the entire numeric expression "(3206987*2^(3/10)*3^(29/40)*5^(23/40))/12000000" instead of solving this and printing out "1.841"
How do I get matlab to print out the solved solution instead of the numeric expression?
Réponse acceptée
KALYAN ACHARJYA
le 27 Déc 2020
Modifié(e) : KALYAN ACHARJYA
le 27 Déc 2020
disp(vpa(simplify(Final)))
Or
fprintf('%.3f',simplify(Final))
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!