Effacer les filtres
Effacer les filtres

Symplify symbolic expression instead of outputting very large denominator values

4 vues (au cours des 30 derniers jours)
monkey_matlab
monkey_matlab le 3 Juin 2017
Commenté : Walter Roberson le 3 Juin 2017
Hello,
In this code:
z = 1;
Q = z^2 -1.368*z + 0.368 + 0.368*k*z + 0.264*k
I get the answer as:
Q =
(79*k)/125 - 1/9007199254740992
Is it possible to leave the final equation like this form:
Q = 0.632*k
Thanks.

Réponses (1)

Star Strider
Star Strider le 3 Juin 2017
Use the vpa function:
Q = vpa(Q,4)
Q =
0.632*k
  3 commentaires
Star Strider
Star Strider le 3 Juin 2017
The imaginary part is essentially 0.
The only option that works is to use the children function:
syms k
Q = (79*k)/125 - 1/9007199254740992;
Q = children(Q);
Q = vpa(Q(1),4)
Q =
0.632*k
Walter Roberson
Walter Roberson le 3 Juin 2017
That is not imaginary part, that is due to round-off and representation issues.
Take each of your numbers and wrap them with sym() with 'd' option. Like instead 0.368 code sym(0.368,'d')

Connectez-vous pour commenter.

Produits

Community Treasure Hunt

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

Start Hunting!

Translated by