Why are symbolic expressions not exactly symbolic?
Ältere Kommentare anzeigen
I have Symbolic toolobx in my 2023A MATLAB release. But the display shows a MATLAB expression rather than symbolic expression. For example,
syms x
taylor(exp(x))
gives the display in command window as: x^5/120 + x^4/24 + x^3/6 + x^2/2 + x + 1.
I want to see the above display in command window. Are there any settings/preferences I should change?
Akzeptierte Antwort
Weitere Antworten (1)
It is suggested to use live script.
syms x
f = taylor(exp(x))
pretty(f)
Kategorien
Mehr zu Symbolic Math Toolbox finden Sie in Hilfe-Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!
