Why does the SUBS function in the Symbolic Toolbox give an output of type DOUBLE?

1 vue (au cours des 30 derniers jours)
When I execute the SUBS function on a symbolic object that contains no variables, I expect the output to be identical to the input. However, the SUBS function converts it to a double-precision number:
syms A x y
A = sym(1);
class(A)
A = subs(A,x,y);
class(A)

Réponse acceptée

MathWorks Support Team
MathWorks Support Team le 27 Juin 2009
This is a designed feature of the SUBS function. To ensure that your output remains a symbolic object, use the SYM function:
syms A x y
A = sym(1);
class(A)
A = sym(subs(A,x,y));
class(A)

Plus de réponses (0)

Catégories

En savoir plus sur Symbolic Math Toolbox dans Help Center et File Exchange

Produits


Version

R2007a

Community Treasure Hunt

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

Start Hunting!

Translated by