How to change the display format of a symbolic function?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Benjamin
am 14 Jan. 2021
Beantwortet: Chaitanya Mallela
am 4 Feb. 2021
Hi dear all,
I have a symbolic function that will be generated as Y = (13500*X^(1229/500))/1000 (X is defined as syms), and I would like to have it as Y = 13.5X^2.458. The format function, or the vpa does not work for all the numbers of this symbolic function, and only re-write it as 13.5*X^(1229/500). is there any way that we be able to convert all numbers?
Thanks
0 Kommentare
Akzeptierte Antwort
Chaitanya Mallela
am 4 Feb. 2021
You can try the code by setting symbolic preferences.
syms X;
sympref('FloatingPointOutput',true);
Y = (13500*X^(1229/500))/1000;
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Numbers and Precision finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!